interface dom.HTMLIFrameElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/index.ts";
const { HTMLIFrameElement } = dom;
Provides special properties and methods (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of inline frame elements.
Properties
readonly
contentDocument: Document | nullRetrieves the document object of the page or frame.
readonly
contentWindow: WindowProxy | nullRetrieves the object of the specified.
referrerPolicy: ReferrerPolicy
readonly
sandbox: DOMTokenListMethods
getSVGDocument(): Document | null
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,