HTMLFrameElement.idl 882 B

123456789101112131415161718192021
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlframeelement
  3. [Exposed=Window]
  4. interface HTMLFrameElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString name;
  7. [CEReactions, Reflect] attribute DOMString scrolling;
  8. [CEReactions, Reflect, URL] attribute USVString src;
  9. [CEReactions, Reflect=frameborder] attribute DOMString frameBorder;
  10. [CEReactions, Reflect=longdesc, URL] attribute USVString longDesc;
  11. [CEReactions, Reflect=noresize] attribute boolean noResize;
  12. readonly attribute Document? contentDocument;
  13. readonly attribute WindowProxy? contentWindow;
  14. [CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
  15. [CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
  16. };