Files
ladybird/Libraries/LibWeb/DOM/DocumentOrShadowRoot.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

16 lines
723 B
Plaintext

#import <CSS/StyleSheetList.idl>
#import <Fullscreen/DocumentOrShadowRootExtensions.idl>
// https://dom.spec.whatwg.org/#documentorshadowroot
interface mixin DocumentOrShadowRoot {
// https://html.spec.whatwg.org/multipage/interaction.html#dom-documentorshadowroot-activeelement
readonly attribute Element? activeElement;
// https://w3c.github.io/csswg-drafts/cssom/#extensions-to-the-document-or-shadow-root-interface
[SameObject, ImplementedAs=style_sheets_for_bindings] readonly attribute StyleSheetList styleSheets;
attribute any adoptedStyleSheets;
// https://www.w3.org/TR/web-animations-1/#extensions-to-the-documentorshadowroot-interface-mixin
sequence<Animation> getAnimations();
};