mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 14:28:49 +00:00
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
17 lines
642 B
Text
17 lines
642 B
Text
#import <DOM/EventHandler.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/sections.html#htmlbodyelement
|
|
[Exposed=Window]
|
|
interface HTMLBodyElement : HTMLElement {
|
|
|
|
[LegacyNullToEmptyString, Reflect] attribute DOMString text;
|
|
[LegacyNullToEmptyString, Reflect] attribute DOMString link;
|
|
[LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink;
|
|
[LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink;
|
|
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
|
|
[Reflect] attribute DOMString background;
|
|
|
|
};
|
|
|
|
HTMLBodyElement includes WindowEventHandlers;
|