HTMLFrameElement.idl 407 B

12345678910111213
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlframeelement
  3. [Exposed=Window]
  4. interface HTMLFrameElement : HTMLElement {
  5. [Reflect] attribute DOMString name;
  6. [Reflect] attribute DOMString scrolling;
  7. [Reflect] attribute DOMString src;
  8. [Reflect=frameborder] attribute DOMString frameBorder;
  9. [Reflect=longdesc] attribute DOMString longDesc;
  10. };