The ShadowRoot interface of the Shadow DOM API is the root node of a DOM subtree that is rendered separately from a document's main DOM tree.
You can retrieve a reference to an element's shadow root using its Element.shadowRoot property, provided it was created using Element.attachShadow() with the mode option set to open.
Add an array of constructed stylesheets to be used by the shadow DOM subtree. These may be shared with other DOM subtrees that share the same parent Document node, and the document itself.
Returns the Element set as the target for mouse events while the pointer is locked. null if lock is pending, pointer is unlocked, or if the target is in another tree.
A boolean that indicates whether the shadow root is serializable. A serializable shadow root inside an element will be serialized by Element.getHTML() or ShadowRoot.getHTML() when its options.serializableShadowRoots parameter is set true. This is set when the shadow root is created.
Parses a string of HTML into a document fragment, without sanitization, which then replaces the shadowroot's original subtree. The HTML string may include declarative shadow roots, which would be parsed as template elements the HTML was set using ShadowRoot.innerHTML.
Events
The following events are available to ShadowRoot via event bubbling from HTMLSlotElement:
An event fired when the node(s) contained in that slot change.
Examples
The following snippets are taken from our life-cycle-callbacks example (see it live also), which creates an element that displays a square of a size and color specified in the element's attributes.
Inside the <custom-square> element's class definition we include some life cycle callbacks that make a call to an external function, updateStyle(), which actually applies the size and color to the element. You'll see that we are passing it this (the custom element itself) as a parameter.
js
connectedCallback(){
console.log('Custom square element added to page.');updateStyle(this);}attributeChangedCallback(name, oldValue, newValue){
console.log('Custom square element attributes changed.');updateStyle(this);}
In the updateStyle() function itself, we get a reference to the shadow DOM using Element.shadowRoot. From here we use standard DOM traversal techniques to find the <style> element inside the shadow DOM and then update the CSS found inside it:
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
79
63
40Before Opera 53, this method returned null when the element was a child of a host node. See bug 759947.
10.1
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
63
41Before Opera 47, this method returned null when the element was a child of a host node. See bug 759947.
10.3
6.0Before Samsung Internet 9.0, this method returned null when the element was a child of a host node. See bug 759947.
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
elementsFromPoint
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
79
63
40
11.1
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
63
41
11.3
6.0Before Samsung Internet 9.0, this method returned null when the element was a child of a host node. See bug 759947.
53Before Chrome 66, this method returned null when the element was a child of a host node. See bug 759947.
fullscreenElement
71
79
6463
58
16.4
71
6463
50
16.4["Only available on iPad, not on iPhone.", "Shows an overlay button which can not be disabled. Swiping down exits fullscreen mode, making it unsuitable for some use cases like games."]