HTMLIFrameElement.idl 751 B

12345678910111213141516171819
  1. interface HTMLIFrameElement : HTMLElement {
  2. [Reflect] attribute DOMString src;
  3. [Reflect] attribute DOMString srcdoc;
  4. [Reflect] attribute DOMString name;
  5. [Reflect] attribute DOMString allow;
  6. [Reflect] attribute DOMString width;
  7. [Reflect] attribute DOMString height;
  8. [Reflect=allowfullscreen] attribute boolean allowFullscreen;
  9. [ReturnNullIfCrossOrigin] readonly attribute Document? contentDocument;
  10. [Reflect] attribute DOMString align;
  11. [Reflect] attribute DOMString scrolling;
  12. [Reflect=frameborder] attribute DOMString frameBorder;
  13. [LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
  14. [LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
  15. }