HTMLFrameSetElement.idl 403 B

123456789101112131415
  1. #import <DOM/EventHandler.idl>
  2. #import <HTML/HTMLElement.idl>
  3. // https://html.spec.whatwg.org/multipage/semantics.html#htmlframesetelement
  4. [Exposed=Window]
  5. interface HTMLFrameSetElement : HTMLElement {
  6. [HTMLConstructor] constructor();
  7. [CEReactions, Reflect] attribute DOMString cols;
  8. [CEReactions, Reflect] attribute DOMString rows;
  9. };
  10. HTMLFrameSetElement includes WindowEventHandlers;