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
.
ShadowRoot.mode
Read only
ShadowRoot
— either open
or closed
. This defines whether or not the shadow root's internal features are accessible from JavaScript.ShadowRoot.host
Read only
ShadowRoot
is attached to.ShadowRoot.innerHTML
ShadowRoot
.The ShadowRoot
interface includes the following properties defined on the DocumentOrShadowRoot
mixin. Note that this is currently only implemented by Chrome; other browsers still implement them on the Document
interface.
DocumentOrShadowRoot.activeElement
Read only
Element
within the shadow tree that has focus.DocumentOrShadowRoot.styleSheets
Read only
StyleSheetList
of CSSStyleSheet
objects for stylesheets explicitly linked into, or embedded in a document.The ShadowRoot
interface includes the following methods defined on the DocumentOrShadowRoot
mixin. Note that this is currently only implemented by Chrome; other browsers still implement them on the Document
interface.
DocumentOrShadowRoot.getSelection()
Selection
object representing the range of text selected by the user, or the current position of the caret.DocumentOrShadowRoot.elementFromPoint()
DocumentOrShadowRoot.elementsFromPoint()
DocumentOrShadowRoot.caretPositionFromPoint()
CaretPosition
object containing the DOM node containing the caret, and caret's character offset within that node.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.
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:
function updateStyle(elem) { var shadow = elem.shadowRoot; var childNodes = shadow.childNodes; for(var i = 0; i < childNodes.length; i++) { if(childNodes[i].nodeName === 'STYLE') { childNodes[i].textContent = 'div {' + ' width: ' + elem.getAttribute('l') + 'px;' + ' height: ' + elem.getAttribute('l') + 'px;' + ' background-color: ' + elem.getAttribute('c'); } } }
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Interface ShadowRoot' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 53 | No | 63
|
No | 40 | 10.1 |
delegatesFocus
|
45 | ? | ? | ? | ? | ? |
Features included from the DocumentOrShadowRoot mixin
|
53 | No
|
No
|
No | 40 | No
|
host
|
53 | No | 63
|
No | 40 | 10.1 |
innerHTML
|
53 | No | 63
|
No | 40 | 10.1 |
mode
|
53 | No | 63
|
No | 40 | 10.1 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 53 | 53 | No | 63
|
40 | 10.1 | 6.0 |
delegatesFocus
|
45 | 45 | ? | ? | ? | ? | ? |
Features included from the DocumentOrShadowRoot mixin
|
53 | 53 | No
|
No
|
40 | No
|
6.0 |
host
|
53 | 53 | No | 63
|
40 | 10.1 | 6.0 |
innerHTML
|
53 | 53 | No | 63
|
40 | 10.1 | 6.0 |
mode
|
53 | 53 | No | 63
|
40 | 10.1 | 6.0 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot