Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- import Event from '../../event/Event';
- import IWindow from '../../window/IWindow';
- import IDocument from '../document/IDocument';
- import IHTMLElement from '../html-element/IHTMLElement';
- import IFrameCrossOriginWindow from './IFrameCrossOriginWindow';
- /**
- * HTML Iframe Element.
- *
- * Reference:
- * https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement.
- */
- export default interface IHTMLIFrameElement extends IHTMLElement {
- src: string | null;
- allow: string | null;
- height: string | null;
- width: string | null;
- name: string | null;
- sandbox: string | null;
- srcdoc: string | null;
- readonly contentDocument: IDocument | null;
- readonly contentWindow: IWindow | IFrameCrossOriginWindow | null;
- onload: (event: Event) => void | null;
- onerror: (event: Event) => void | null;
- }
|