HTMLBodyElement.idl 774 B

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