mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 09:50:27 +00:00
9 lines
256 B
Text
9 lines
256 B
Text
#import <DOM/EventHandler.idl>
|
|
|
|
// https://fullscreen.spec.whatwg.org/#ref-for-element
|
|
partial interface Element {
|
|
Promise<undefined> requestFullscreen();
|
|
|
|
attribute EventHandler onfullscreenchange;
|
|
attribute EventHandler onfullscreenerror;
|
|
};
|