HTMLBodyElement.idl 642 B

1234567891011121314151617
  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. [LegacyNullToEmptyString, Reflect] attribute DOMString text;
  7. [LegacyNullToEmptyString, Reflect] attribute DOMString link;
  8. [LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink;
  9. [LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink;
  10. [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  11. [Reflect] attribute DOMString background;
  12. };
  13. HTMLBodyElement includes WindowEventHandlers;