ShadowRoot: pictureInPictureElement property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
ThepictureInPictureElement read-only property of theShadowRoot interface returns theElement that is currently beingpresented in picture-in-picture mode in this shadow tree, ornull ifpicture-in-picture mode is not currently in use.
In this article
Value
A reference to theElement object that's currently in picture-in-picture mode.
Returnsnull if the shadow tree has no associated element in picture-in-picture mode. For example, there's no picture-in-picture element, or the element is not in the shadow tree.
Examples
js
let customElem = document.querySelector("my-shadow-dom-element");let shadow = customElem.shadowRoot;let pipElem = shadow.pictureInPictureElement;Specifications
| Specification |
|---|
| Picture-in-Picture> # dom-pictureinpictureevent-pictureinpicturewindow> |