HTMLFrameElement
deprecatedinterface HTMLFrameElement extends HTMLElement {
readonly contentDocument: Document | null;
readonly contentWindow: WindowProxy | null;
frameBorder: string;
longDesc: string;
marginHeight: string;
marginWidth: string;
name: string;
noResize: boolean;
scrolling: string;
src: string;
addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;addEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void;removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;removeEventListener(
}type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void;var HTMLFrameElement: {
prototype: HTMLFrameElement;
new (): HTMLFrameElement;
};§Extends
§Properties
§
readonly contentWindow: WindowProxy | null
[src]Retrieves the object of the specified.
§
marginHeight: string
[src]Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
§Methods
§
addEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void§
addEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void§
removeEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void§
removeEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void