HTMLFrameElement.idl 863 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] attribute DOMString src;
  9. [CEReactions, Reflect=frameborder] attribute DOMString frameBorder;
  10. [CEReactions, Reflect=longdesc] attribute DOMString longDesc;
  11. // FIXME: [CEReactions] attribute boolean noResize;
  12. // FIXME: readonly attribute Document? contentDocument;
  13. // FIXME: readonly attribute WindowProxy? contentWindow;
  14. // FIXME: [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginHeight;
  15. // FIXME: [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginWidth;
  16. };