ShadowRoot.pictureInPictureElement
The pictureInPictureElement
read-only property of the ShadowRoot
interface returns the Element
that is currently being presented in picture-in-picture mode in this shadow tree, or null
if picture-in-picture mode is not currently in use.
Syntax
shadowRoot.pictureInPictureElement
Value
A reference to the Element
object that's currently in picture-in-picture mode, or, if picture-in-picture mode isn't currently in use by the shadow tree, the returned value is null
.
Examples
let customElem = document.querySelector('my-shadow-dom-element'); let shadow = customElem.shadowRoot; let pipElem = shadow.pictureInPictureElement;
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
pictureInPictureElement |
69 |
79 |
No |
No |
56 |
13.1 |
No |
No |
No |
No |
13.4 |
No |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/pictureInPictureElement