The difference between Angular’s Emulated Shadow DOM and native Shadow DOM

In Angular, components styles can be encapsulated. There are three different encapsulation strategies available. None
, Emulated
and ShadowDom
.
None
is probably the least interesting. It just disables encapsulation completely. But what is the difference between Emulated
and ShadowDom
?Let’s find out!