ladybird/Userland/Libraries/LibWeb/HTML/HTMLBodyElement.idl

16 lines
553 B
Text
Raw Normal View History

2022-06-27 19:48:54 +01:00
#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;
};
2022-06-27 19:48:54 +01:00
HTMLBodyElement includes WindowEventHandlers;