Back to Content

ShadowRoot: fullscreenElement property

files/en-us/web/api/shadowroot/fullscreenelement/index.md

latest647 B
Original Source

{{APIRef("Shadow DOM")}}

The fullscreenElement read-only property of the {{domxref("ShadowRoot")}} interface returns the element within the shadow tree that is currently displayed in full screen.

Value

The {{domxref('Element')}} which is currently is displayed in full screen mode, or null if there is no full screen element.

Examples

js
let customElem = document.querySelector("my-shadow-dom-element");
let shadow = customElem.shadowRoot;
let fullscreenElem = shadow.fullscreenElement;

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("Document.fullscreenElement")}}