// GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into reffy-reports // (https://github.com/tidoust/reffy-reports) // Source: Fullscreen API Standard (https://fullscreen.spec.whatwg.org/) enum FullscreenNavigationUI { "auto", "show", "hide" }; dictionary FullscreenOptions { FullscreenNavigationUI navigationUI = "auto"; }; partial interface Element { Promise requestFullscreen(optional FullscreenOptions options); attribute EventHandler onfullscreenchange; attribute EventHandler onfullscreenerror; }; partial interface Document { [LenientSetter] readonly attribute boolean fullscreenEnabled; [LenientSetter, Unscopable] readonly attribute boolean fullscreen; // historical Promise exitFullscreen(); attribute EventHandler onfullscreenchange; attribute EventHandler onfullscreenerror; }; partial interface mixin DocumentOrShadowRoot { [LenientSetter] readonly attribute Element? fullscreenElement; };