Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yxz/typing/lib.dom.ts>HTMLFrameElement

Deno Standard Extensions
Go to Latest
interface HTMLFrameElement
implements HTMLElement
Deprecated
import { type HTMLFrameElement } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.ts";

Properties

readonly
deprecated
contentDocument: Document | null

Retrieves the document object of the page or frame.

readonly
deprecated
contentWindow: WindowProxy | null

Retrieves the object of the specified.

deprecated
frameBorder: string

Sets or retrieves whether to display a border for the frame.

deprecated
longDesc: string

Sets or retrieves a URI to a long description of the object.

deprecated
marginHeight: string

Sets or retrieves the top and bottom margin heights before displaying the text in a frame.

deprecated
marginWidth: string

Sets or retrieves the left and right margin widths before displaying the text in a frame.

deprecated
name: string

Sets or retrieves the frame name.

deprecated
noResize: boolean

Sets or retrieves whether the user can resize the frame.

deprecated
scrolling: string

Sets or retrieves whether the frame can be scrolled.

deprecated
src: string

Sets or retrieves a URL to be loaded by the object.

Methods

addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
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,
options?: boolean | EventListenerOptions,
): void