HTMLIFrameElement.idl 908 B

123456789101112131415161718192021222324252627
  1. #import <HTML/HTMLElement.idl>
  2. #import <DOM/Document.idl>
  3. interface HTMLIFrameElement : HTMLElement {
  4. [Reflect] attribute DOMString src;
  5. [Reflect] attribute DOMString srcdoc;
  6. [Reflect] attribute DOMString name;
  7. [Reflect] attribute DOMString allow;
  8. [Reflect] attribute DOMString width;
  9. [Reflect] attribute DOMString height;
  10. [Reflect=allowfullscreen] attribute boolean allowFullscreen;
  11. readonly attribute Document? contentDocument;
  12. // FIXME: Should return a WindowProxy?
  13. readonly attribute Window? contentWindow;
  14. [Reflect] attribute DOMString align;
  15. [Reflect] attribute DOMString scrolling;
  16. [Reflect=frameborder] attribute DOMString frameBorder;
  17. [LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
  18. [LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
  19. Document? getSVGDocument();
  20. };