ladybird/Libraries/LibWeb/Fullscreen/DocumentOrShadowRootExtensions.idl
Simon Farre bc17805b2b LibWeb: Implement requestFullscreen algorithm
The required functionality to exit fullscreen will be in a followup
commit.
2026-02-23 18:44:26 +00:00

6 lines
265 B
Text

#import <DOM/Element.idl>
// https://fullscreen.spec.whatwg.org/#ref-for-documentorshadowroot
partial interface mixin DocumentOrShadowRoot {
[LegacyLenientSetter, ImplementedAs=fullscreen_element_for_bindings] readonly attribute Element? fullscreenElement;
};