mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
15 lines
553 B
Text
15 lines
553 B
Text
#import <DOM/EventHandler.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
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;
|