mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 23:19:44 +00:00
The Window object is massive, so let's do the conversion to IDL step by step. First up: getting rid of the manual constructor and prototype definitions, which can be generated from an empty `interface Window`.
6 lines
205 B
Text
6 lines
205 B
Text
#import <DOM/EventTarget.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#window
|
|
[Global=Window, Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
interface Window : EventTarget {
|
|
};
|