mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
18 lines
711 B
Plaintext
18 lines
711 B
Plaintext
// https://html.spec.whatwg.org/multipage/sections.html#htmlbodyelement
|
|
[Exposed=Window]
|
|
interface HTMLBodyElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
// Obsolete
|
|
[CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString text;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString link;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
|
|
[CEReactions, Reflect] attribute DOMString background;
|
|
|
|
};
|
|
|
|
HTMLBodyElement includes WindowEventHandlers;
|