mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 15:35:07 +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 {
|
|
};
|