HTMLIFrameElement.idl 785 B

12345678910111213141516171819202122
  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. [Reflect] attribute DOMString align;
  13. [Reflect] attribute DOMString scrolling;
  14. [Reflect=frameborder] attribute DOMString frameBorder;
  15. [LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
  16. [LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
  17. };