dom.openOrClosedShadowRoot()
Gets the open shadow root or the closed shadow root hosted by the specified element. If the shadow root isn't attached to the element, it will return null
.
Note:
In Firefox, the equivalent property is element.openOrClosedShadowRoot
. This read-only property represents the shadow root hosted by the element, regardless of whether its mode
is open
or closed
.
Use Element.attachShadow()
to add a shadow root to an element.
Syntax
js
let shadowRoot = browser.dom.openOrClosedShadowRoot(
element, // HTMLElement
)
Parameters
element
-
HTMLElement
. The host element.
Return value
A ShadowRoot
object instance, regardless of whether its
mode
is set to open
or
closed
, or null
if no shadow root is present.
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | ||||||
---|---|---|---|---|---|---|---|
openOrClosedShadowRoot |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- See implementation notes.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.