版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

25 строки
829 B

  1. import Event from '../../event/Event';
  2. import IWindow from '../../window/IWindow';
  3. import IDocument from '../document/IDocument';
  4. import IHTMLElement from '../html-element/IHTMLElement';
  5. import IFrameCrossOriginWindow from './IFrameCrossOriginWindow';
  6. /**
  7. * HTML Iframe Element.
  8. *
  9. * Reference:
  10. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement.
  11. */
  12. export default interface IHTMLIFrameElement extends IHTMLElement {
  13. src: string | null;
  14. allow: string | null;
  15. height: string | null;
  16. width: string | null;
  17. name: string | null;
  18. sandbox: string | null;
  19. srcdoc: string | null;
  20. readonly contentDocument: IDocument | null;
  21. readonly contentWindow: IWindow | IFrameCrossOriginWindow | null;
  22. onload: (event: Event) => void | null;
  23. onerror: (event: Event) => void | null;
  24. }