HTMLBodyElement.idl 758 B

12345678910111213141516171819
  1. #import <DOM/EventHandler.idl>
  2. #import <HTML/HTMLElement.idl>
  3. // https://html.spec.whatwg.org/multipage/sections.html#htmlbodyelement
  4. [Exposed=Window]
  5. interface HTMLBodyElement : HTMLElement {
  6. [HTMLConstructor] constructor();
  7. [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString text;
  8. [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString link;
  9. [CEReactions, LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink;
  10. [CEReactions, LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink;
  11. [CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  12. [CEReactions, Reflect] attribute DOMString background;
  13. };
  14. HTMLBodyElement includes WindowEventHandlers;