版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IHTMLIFrameElement.d.ts 829 B

преди 1 година
123456789101112131415161718192021222324
  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. }