-
Notifications
You must be signed in to change notification settings - Fork 17
Polyfill Limitations
This is an incomplete list of limitations that we should watch out for, as long as we support IE11.
https://github.com/webcomponents/shadycss#limitations
To use the ::slotted
pseudo-element, you must select it as a descendant of some context element.
/* Bad */
::slotted() {
}
/* Good */
.context ::slotted() {
}
Since ShadyCSS removes all <slot>
elements, you cannot select them directly or use any other selectors along with the ::slotted
pseudo-element selector.
<!-- Bad -->
<style>
.foo .bar::slotted(*) {
}
</style>
<span class="foo"> <slot class="bar"></slot> </span>
<!-- Good -->
<style>
.foo ::slotted(*) {
}
</style>
<span class="foo"> <slot></slot> </span>
ShadyCSS mimics the behavior of shadow dom, but it is not able to prevent document level styling to affect elements inside a shady dom. Global styles defined in index.html
or any styles not processed by ShadyCSS will affect all elements on the page.
To scope document level styling, the style must be wrapped in the <custom-style>
element found in Polymer, or use the CustomStyleInterface
library to modify document level styles.
ShadyCSS works by processing a template for a given custom element class. Only the style elements present in that template will be scoped for the custom element's ShadowRoot.
https://github.com/webcomponents/shadydom#limitations
ShadyDOM distribution is asynchronous for performance reasons. This means that the composed dom will be available 1 microtask after the dom mutation occurs. For testing, ShadyDOM.flush may be called to force syncronous composition.
https://github.com/webcomponents/custom-elements#known-bugs-and-limitations
Only DOM API is patched. Notably, this excludes API from the HTML spec marked with the CEReactions
extended attribute.
- Unpatched API from the DOM spec:
- Setters on Element for
id
,className
, andslot
. - DOMTokenList (
element.classList
) - NamedNodeMap (
element.attributes
) - Attr (
element.attributes.getNamedItem('attr-name')
)
- Setters on Element for
The :defined CSS pseudo-class is not supported.
https://github.com/webcomponents/template#known-limitations
The first timepoint in which the polyfill can be certain the main document is loaded is DOMContentLoaded. As such, we use this timepoint to bootstrap any <template>
as defined in the main document. This means that any scripts in the main document that run before this event (e.g. inline scripts) will not have the properly upgraded templates. Instead, listen for DOMContentLoaded yourself and only after that interact with any <template>
in the main document.