Serenity Operating System
at master 17 lines 642 B view raw
1#import <DOM/EventHandler.idl> 2#import <HTML/HTMLElement.idl> 3 4// https://html.spec.whatwg.org/multipage/sections.html#htmlbodyelement 5[Exposed=Window] 6interface HTMLBodyElement : HTMLElement { 7 8 [LegacyNullToEmptyString, Reflect] attribute DOMString text; 9 [LegacyNullToEmptyString, Reflect] attribute DOMString link; 10 [LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink; 11 [LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink; 12 [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor; 13 [Reflect] attribute DOMString background; 14 15}; 16 17HTMLBodyElement includes WindowEventHandlers;