Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>HTMLEmbedElement

Advanced Web Composition for Future
Latest
interface HTMLEmbedElement
implements HTMLElement
import { type HTMLEmbedElement } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

Provides special properties (beyond the regular HTMLElement export interface it also has available to it by inheritance) for manipulating elements.

Properties

deprecated
align: string
height: string

Sets or retrieves the height of the object.

deprecated
name: string
src: string

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

type: string
width: string

Sets or retrieves the width of the object.

Methods

getSVGDocument(): Document | null
addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void