ladybird/Userland/Libraries/LibWeb/HTML/Window.idl

10 lines
310 B
Text
Raw Normal View History

#import <DOM/EventHandler.idl>
#import <DOM/EventTarget.idl>
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#window
[Global=Window, Exposed=Window, LegacyUnenumerableNamedProperties]
interface Window : EventTarget {
};
Window includes GlobalEventHandlers;
Window includes WindowEventHandlers;