Options
All
  • Public
  • Public/Protected
  • All
Menu

Any web page loaded in the browser and serves as an entry point into the web page's content, which is the DOM tree.

Hierarchy

Index

Properties

Accessors

Methods

Properties

ATTRIBUTE_NODE: number
CDATA_SECTION_NODE: number

node is a CDATASection node.

COMMENT_NODE: number

node is a Comment node.

DOCUMENT_FRAGMENT_NODE: number

node is a DocumentFragment node.

DOCUMENT_NODE: number

node is a document.

DOCUMENT_POSITION_CONTAINED_BY: number

Set when other is a descendant of node.

DOCUMENT_POSITION_CONTAINS: number

Set when other is an ancestor of node.

DOCUMENT_POSITION_DISCONNECTED: number

Set when node and other are not in the same tree.

DOCUMENT_POSITION_FOLLOWING: number

Set when other is following node.

DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number
DOCUMENT_POSITION_PRECEDING: number

Set when other is preceding node.

DOCUMENT_TYPE_NODE: number

node is a doctype.

ELEMENT_NODE: number

node is an element.

ENTITY_NODE: number
ENTITY_REFERENCE_NODE: number
NOTATION_NODE: number
PROCESSING_INSTRUCTION_NODE: number

node is a ProcessingInstruction node.

TEXT_NODE: number

node is a Text node.

URL: string

Sets or gets the URL for the current document.

activeElement: null | internal.Element

Returns the deepest element in the document through which or to which key events are being routed. This is, roughly speaking, the focused element in the document.

For the purposes of this API, when a child browsing context is focused, its container is focused in the parent browsing context. For example, if the user moves the focus to a text control in an iframe, the iframe is the element returned by the activeElement API in the iframe's node document.

Similarly, when the focused element is in a different node tree than documentOrShadowRoot, the element returned will be the host that's located in the same node tree as documentOrShadowRoot if documentOrShadowRoot is a shadow-including inclusive ancestor of the focused element, and null if not.

adoptedStyleSheets: internal.CSSStyleSheet[]
alinkColor: string

Sets or gets the color of all active links in the document.

deprecated

Returns a reference to the collection of elements contained by the object.

deprecated

Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order.

deprecated

Retrieves a collection of all applet objects in the document.

deprecated
baseURI: string

Returns node's node document's document base URL.

bgColor: string

Deprecated. Sets or retrieves a value that indicates the background color behind the object.

deprecated

Specifies the beginning and end of the document body.

characterSet: string

Returns document's encoding.

charset: string

Gets or sets the character set used to encode the object.

deprecated

This is a legacy alias of characterSet.

childElementCount: number
childNodes: NodeListOf<ChildNode>

Returns the children.

Returns the child elements.

compatMode: string

Gets a value that indicates whether standards-compliant mode is switched on for the object.

contentType: string

Returns document's content type.

cookie: string

Returns the HTTP cookies that apply to the Document. If there are no cookies or cookies can't be applied to this resource, the empty string will be returned.

Can be set, to add a new cookie to the element's set of HTTP cookies.

If the contents are sandboxed into a unique origin (e.g. in an iframe with the sandbox attribute), a "SecurityError" DOMException will be thrown on getting and setting.

currentScript: null | HTMLOrSVGScriptElement

Returns the script element, or the SVG script element, that is currently executing, as long as the element represents a classic script. In the case of reentrant script execution, returns the one that most recently started executing amongst those that have not yet finished executing.

Returns null if the Document is not currently executing a script or SVG script element (e.g., because the running script is an event handler, or a timeout), or if the currently executing script or SVG script element represents a module script.

defaultView: null | internal.Window & typeof globalThis

Returns the Window object of the active document.

designMode: string

Sets or gets a value that indicates whether the document can be edited.

dir: string

Sets or retrieves a value that indicates the reading order of the object.

doctype: null | internal.DocumentType

Gets an object representing the document type declaration associated with the current document.

documentElement: internal.HTMLElement

Gets a reference to the root node of the document.

documentURI: string

Returns document's URL.

domain: string

Sets or gets the security domain of the document.

deprecated

Retrieves a collection of all embed objects in the document.

fgColor: string

Sets or gets the foreground (text) color of the document.

deprecated
firstChild: null | ChildNode

Returns the first child.

firstElementChild: null | internal.Element

Returns the first child that is an element, and null otherwise.

Retrieves a collection, in source order, of all form objects in the document.

fullscreen: boolean
deprecated
fullscreenElement: null | internal.Element

Returns document's fullscreen element.

fullscreenEnabled: boolean

Returns true if document has the ability to display elements fullscreen and fullscreen is supported, or false otherwise.

Returns the head element.

hidden: boolean

Retrieves a collection, in source order, of img objects in the document.

implementation: internal.DOMImplementation

Gets the implementation object of the current document.

inputEncoding: string

Returns the character encoding used to create the webpage that is loaded into the document object.

deprecated

This is a legacy alias of characterSet.

isConnected: boolean

Returns true if node is connected and false otherwise.

lastChild: null | ChildNode

Returns the last child.

lastElementChild: null | internal.Element

Returns the last child that is an element, and null otherwise.

lastModified: string

Gets the date that the page was last modified, if the page supplies one.

linkColor: string

Sets or gets the color of the document links.

deprecated

Retrieves a collection of all a objects that specify the href property and all area objects in the document.

nextSibling: null | ChildNode

Returns the next sibling.

nodeName: string

Returns a string appropriate for the type of node.

nodeType: number

Returns the type of node.

nodeValue: null | string
onabort: null | ((this: GlobalEventHandlers, ev: internal.UIEvent) => any)

Fires when the user aborts the download.

param ev

The event.

onanimationcancel: null | ((this: GlobalEventHandlers, ev: internal.AnimationEvent) => any)
onanimationend: null | ((this: GlobalEventHandlers, ev: internal.AnimationEvent) => any)
onanimationiteration: null | ((this: GlobalEventHandlers, ev: internal.AnimationEvent) => any)
onanimationstart: null | ((this: GlobalEventHandlers, ev: internal.AnimationEvent) => any)
onauxclick: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)
onbeforeinput: null | ((this: GlobalEventHandlers, ev: internal.InputEvent) => any)
onblur: null | ((this: GlobalEventHandlers, ev: internal.FocusEvent) => any)

Fires when the object loses the input focus.

param ev

The focus event.

oncancel: null | ((this: GlobalEventHandlers, ev: Event) => any)
oncanplay: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when playback is possible, but would require further buffering.

param ev

The event.

oncanplaythrough: null | ((this: GlobalEventHandlers, ev: Event) => any)
onchange: null | ((this: GlobalEventHandlers, ev: Event) => any)

Fires when the contents of the object or selection have changed.

param ev

The event.

onclick: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user clicks the left mouse button on the object

param ev

The mouse event.

onclose: null | ((this: GlobalEventHandlers, ev: Event) => any)
oncontextmenu: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user clicks the right mouse button in the client area, opening the context menu.

param ev

The mouse event.

oncopy: null | ((this: DocumentAndElementEventHandlers, ev: internal.ClipboardEvent) => any)
oncuechange: null | ((this: GlobalEventHandlers, ev: Event) => any)
oncut: null | ((this: DocumentAndElementEventHandlers, ev: internal.ClipboardEvent) => any)
ondblclick: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user double-clicks the object.

param ev

The mouse event.

ondrag: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the source object continuously during a drag operation.

param ev

The event.

ondragend: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the source object when the user releases the mouse at the close of a drag operation.

param ev

The event.

ondragenter: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the target element when the user drags the object to a valid drop target.

param ev

The drag event.

ondragleave: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.

param ev

The drag event.

ondragover: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the target element continuously while the user drags the object over a valid drop target.

param ev

The event.

ondragstart: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)

Fires on the source object when the user starts to drag a text selection or selected object.

param ev

The event.

ondrop: null | ((this: GlobalEventHandlers, ev: internal.DragEvent) => any)
ondurationchange: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the duration attribute is updated.

param ev

The event.

onemptied: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the media element is reset to its initial state.

param ev

The event.

onended: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the end of playback is reached.

param ev

The event

Fires when an error occurs during object loading.

param ev

The event.

onfocus: null | ((this: GlobalEventHandlers, ev: internal.FocusEvent) => any)

Fires when the object receives focus.

param ev

The event.

onformdata: null | ((this: GlobalEventHandlers, ev: internal.FormDataEvent) => any)
onfullscreenchange: null | ((this: internal.Document, ev: Event) => any)
onfullscreenerror: null | ((this: internal.Document, ev: Event) => any)
ongotpointercapture: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
oninput: null | ((this: GlobalEventHandlers, ev: Event) => any)
oninvalid: null | ((this: GlobalEventHandlers, ev: Event) => any)
onkeydown: null | ((this: GlobalEventHandlers, ev: internal.KeyboardEvent) => any)

Fires when the user presses a key.

param ev

The keyboard event

onkeypress: null | ((this: GlobalEventHandlers, ev: internal.KeyboardEvent) => any)

Fires when the user presses an alphanumeric key.

param ev

The event.

deprecated
onkeyup: null | ((this: GlobalEventHandlers, ev: internal.KeyboardEvent) => any)

Fires when the user releases a key.

param ev

The keyboard event

onload: null | ((this: GlobalEventHandlers, ev: Event) => any)

Fires immediately after the browser loads the object.

param ev

The event.

onloadeddata: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when media data is loaded at the current playback position.

param ev

The event.

onloadedmetadata: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the duration and dimensions of the media have been determined.

param ev

The event.

onloadstart: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when Internet Explorer begins looking for media data.

param ev

The event.

onlostpointercapture: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onmousedown: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user clicks the object with either mouse button.

param ev

The mouse event.

onmouseenter: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)
onmouseleave: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)
onmousemove: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user moves the mouse over the object.

param ev

The mouse event.

onmouseout: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user moves the mouse pointer outside the boundaries of the object.

param ev

The mouse event.

onmouseover: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user moves the mouse pointer into the object.

param ev

The mouse event.

onmouseup: null | ((this: GlobalEventHandlers, ev: internal.MouseEvent) => any)

Fires when the user releases a mouse button while the mouse is over the object.

param ev

The mouse event.

onpaste: null | ((this: DocumentAndElementEventHandlers, ev: internal.ClipboardEvent) => any)
onpause: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when playback is paused.

param ev

The event.

onplay: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the play method is requested.

param ev

The event.

onplaying: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the audio or video has started playing.

param ev

The event.

onpointercancel: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerdown: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerenter: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerleave: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerlockchange: null | ((this: internal.Document, ev: Event) => any)
onpointerlockerror: null | ((this: internal.Document, ev: Event) => any)
onpointermove: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerout: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerover: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onpointerup: null | ((this: GlobalEventHandlers, ev: internal.PointerEvent) => any)
onprogress: null | ((this: GlobalEventHandlers, ev: internal.ProgressEvent<EventTarget>) => any)

Occurs to indicate progress while downloading media data.

param ev

The event.

onratechange: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the playback rate is increased or decreased.

param ev

The event.

onreadystatechange: null | ((this: internal.Document, ev: Event) => any)

Fires when the state of the object has changed.

param ev

The event

onreset: null | ((this: GlobalEventHandlers, ev: Event) => any)

Fires when the user resets a form.

param ev

The event.

onresize: null | ((this: GlobalEventHandlers, ev: internal.UIEvent) => any)
onscroll: null | ((this: GlobalEventHandlers, ev: Event) => any)

Fires when the user repositions the scroll box in the scroll bar on the object.

param ev

The event.

onsecuritypolicyviolation: null | ((this: GlobalEventHandlers, ev: internal.SecurityPolicyViolationEvent) => any)
onseeked: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the seek operation ends.

param ev

The event.

onseeking: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the current playback position is moved.

param ev

The event.

onselect: null | ((this: GlobalEventHandlers, ev: Event) => any)

Fires when the current selection changes.

param ev

The event.

onselectionchange: null | ((this: GlobalEventHandlers, ev: Event) => any)
onselectstart: null | ((this: GlobalEventHandlers, ev: Event) => any)
onslotchange: null | ((this: GlobalEventHandlers, ev: Event) => any)
onstalled: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the download has stopped.

param ev

The event.

onsubmit: null | ((this: GlobalEventHandlers, ev: internal.SubmitEvent) => any)
onsuspend: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs if the load operation has been intentionally halted.

param ev

The event.

ontimeupdate: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs to indicate the current playback position.

param ev

The event.

ontoggle: null | ((this: GlobalEventHandlers, ev: Event) => any)
ontouchcancel?: null | ((this: GlobalEventHandlers, ev: internal.TouchEvent) => any)
ontouchend?: null | ((this: GlobalEventHandlers, ev: internal.TouchEvent) => any)
ontouchmove?: null | ((this: GlobalEventHandlers, ev: internal.TouchEvent) => any)
ontouchstart?: null | ((this: GlobalEventHandlers, ev: internal.TouchEvent) => any)
ontransitioncancel: null | ((this: GlobalEventHandlers, ev: internal.TransitionEvent) => any)
ontransitionend: null | ((this: GlobalEventHandlers, ev: internal.TransitionEvent) => any)
ontransitionrun: null | ((this: GlobalEventHandlers, ev: internal.TransitionEvent) => any)
ontransitionstart: null | ((this: GlobalEventHandlers, ev: internal.TransitionEvent) => any)
onvisibilitychange: null | ((this: internal.Document, ev: Event) => any)
onvolumechange: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when the volume is changed, or playback is muted or unmuted.

param ev

The event.

onwaiting: null | ((this: GlobalEventHandlers, ev: Event) => any)

Occurs when playback stops because the next frame of a video resource is not available.

param ev

The event.

onwebkitanimationend: null | ((this: GlobalEventHandlers, ev: Event) => any)
deprecated

This is a legacy alias of onanimationend.

onwebkitanimationiteration: null | ((this: GlobalEventHandlers, ev: Event) => any)
deprecated

This is a legacy alias of onanimationiteration.

onwebkitanimationstart: null | ((this: GlobalEventHandlers, ev: Event) => any)
deprecated

This is a legacy alias of onanimationstart.

onwebkittransitionend: null | ((this: GlobalEventHandlers, ev: Event) => any)
deprecated

This is a legacy alias of ontransitionend.

onwheel: null | ((this: GlobalEventHandlers, ev: internal.WheelEvent) => any)
ownerDocument: null

Returns the node document. Returns null for documents.

parentElement: null | internal.HTMLElement

Returns the parent element.

parentNode: null | ParentNode

Returns the parent.

pictureInPictureElement: null | internal.Element
pictureInPictureEnabled: boolean

Return an HTMLCollection of the embed elements in the Document.

pointerLockElement: null | internal.Element
previousSibling: null | ChildNode

Returns the previous sibling.

readyState: DocumentReadyState

Retrieves a value that indicates the current state of the object.

referrer: string

Gets the URL of the location that referred the user to the current page.

rootElement: null | internal.SVGSVGElement
deprecated

Retrieves a collection of all script objects in the document.

scrollingElement: null | internal.Element

Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.

textContent: null | string
title: string

Contains the title of the document.

visibilityState: DocumentVisibilityState
vlinkColor: string

Sets or gets the color of the links that the user has visited.

deprecated

Accessors

  • get location(): Location
  • set location(href: string | Location): void
  • Contains information about the current URL.

    Returns Location

  • Contains information about the current URL.

    Parameters

    • href: string | Location

    Returns void

Methods

  • addEventListener<K>(type: K, listener: ((this: internal.Document, ev: DocumentEventMap[K]) => any), options?: boolean | AddEventListenerOptions): void
  • addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void
  • Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.

    The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options's capture.

    When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.

    When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.

    When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.

    If an AbortSignal is passed for options's signal, then the event listener will be removed when signal is aborted.

    The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.

    Type Parameters

    Parameters

    Returns void

  • Parameters

    • type: string
    • listener: EventListenerOrEventListenerObject
    • Optional options: boolean | AddEventListenerOptions

    Returns void

  • adoptNode<T>(node: T): T
  • Moves node from another document and returns it.

    If node is a document, throws a "NotSupportedError" DOMException or, if node is a shadow root, throws a "HierarchyRequestError" DOMException.

    Type Parameters

    Parameters

    • node: T

    Returns T

  • Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.

    Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.

    Parameters

    Returns void

  • appendChild<T>(node: T): T
  • captureEvents(): void
  • deprecated

    Returns void

  • deprecated

    Parameters

    • x: number
    • y: number

    Returns null | internal.Range

  • clear(): void
  • deprecated

    Returns void

  • Returns a copy of node. If deep is true, the copy also includes the node's descendants.

    Parameters

    • Optional deep: boolean

    Returns internal.Node

  • close(): void
  • Closes an output stream and forces the sent data to display.

    Returns void

  • Returns true if other is an inclusive descendant of node, and false otherwise.

    Parameters

    Returns boolean

  • Creates an attribute object with a specified name.

    Parameters

    • localName: string

    Returns internal.Attr

  • createAttributeNS(namespace: null | string, qualifiedName: string): internal.Attr
  • Parameters

    • namespace: null | string
    • qualifiedName: string

    Returns internal.Attr

  • Returns a CDATASection node whose data is data.

    Parameters

    • data: string

    Returns internal.CDATASection

  • Creates a comment object with the specified data.

    Parameters

    • data: string

      Sets the comment object's data.

    Returns internal.Comment

  • Returns an element with namespace namespace. Its namespace prefix will be everything before ":" (U+003E) in qualifiedName or null. Its local name will be everything after ":" (U+003E) in qualifiedName or qualifiedName.

    If localName does not match the Name production an "InvalidCharacterError" DOMException will be thrown.

    If one of the following conditions is true a "NamespaceError" DOMException will be thrown:

    localName does not match the QName production. Namespace prefix is not null and namespace is the empty string. Namespace prefix is "xml" and namespace is not the XML namespace. qualifiedName or namespace prefix is "xmlns" and namespace is not the XMLNS namespace. namespace is the XMLNS namespace and neither qualifiedName nor namespace prefix is "xmlns".

    When supplied, options's is can be used to create a customized built-in element.

    Parameters

    • namespaceURI: "http://www.w3.org/1999/xhtml"
    • qualifiedName: string

    Returns internal.HTMLElement

  • Type Parameters

    Parameters

    • namespaceURI: "http://www.w3.org/2000/svg"
    • qualifiedName: K

    Returns SVGElementTagNameMap[K]

  • Parameters

    • namespaceURI: "http://www.w3.org/2000/svg"
    • qualifiedName: string

    Returns internal.SVGElement

  • Parameters

    Returns internal.Element

  • Parameters

    Returns internal.Element

  • Parameters

    • eventInterface: "AnimationEvent"

    Returns internal.AnimationEvent

  • Parameters

    • eventInterface: "AnimationPlaybackEvent"

    Returns internal.AnimationPlaybackEvent

  • Parameters

    • eventInterface: "AudioProcessingEvent"

    Returns internal.AudioProcessingEvent

  • Parameters

    • eventInterface: "BeforeUnloadEvent"

    Returns internal.BeforeUnloadEvent

  • Parameters

    • eventInterface: "BlobEvent"

    Returns internal.BlobEvent

  • Parameters

    • eventInterface: "ClipboardEvent"

    Returns internal.ClipboardEvent

  • Parameters

    • eventInterface: "CloseEvent"

    Returns internal.CloseEvent

  • Parameters

    • eventInterface: "CompositionEvent"

    Returns internal.CompositionEvent

  • Parameters

    • eventInterface: "CustomEvent"

    Returns internal.CustomEvent<any>

  • Parameters

    • eventInterface: "DeviceMotionEvent"

    Returns internal.DeviceMotionEvent

  • Parameters

    • eventInterface: "DeviceOrientationEvent"

    Returns internal.DeviceOrientationEvent

  • Parameters

    • eventInterface: "DragEvent"

    Returns internal.DragEvent

  • Parameters

    • eventInterface: "ErrorEvent"

    Returns internal.ErrorEvent

  • Parameters

    • eventInterface: "Event"

    Returns Event

  • Parameters

    • eventInterface: "Events"

    Returns Event

  • Parameters

    • eventInterface: "FocusEvent"

    Returns internal.FocusEvent

  • Parameters

    • eventInterface: "FontFaceSetLoadEvent"

    Returns internal.FontFaceSetLoadEvent

  • Parameters

    • eventInterface: "FormDataEvent"

    Returns internal.FormDataEvent

  • Parameters

    • eventInterface: "GamepadEvent"

    Returns internal.GamepadEvent

  • Parameters

    • eventInterface: "HashChangeEvent"

    Returns internal.HashChangeEvent

  • Parameters

    • eventInterface: "IDBVersionChangeEvent"

    Returns internal.IDBVersionChangeEvent

  • Parameters

    • eventInterface: "InputEvent"

    Returns internal.InputEvent

  • Parameters

    • eventInterface: "KeyboardEvent"

    Returns internal.KeyboardEvent

  • Parameters

    • eventInterface: "MediaEncryptedEvent"

    Returns internal.MediaEncryptedEvent

  • Parameters

    • eventInterface: "MediaKeyMessageEvent"

    Returns internal.MediaKeyMessageEvent

  • Parameters

    • eventInterface: "MediaQueryListEvent"

    Returns internal.MediaQueryListEvent

  • Parameters

    • eventInterface: "MediaStreamTrackEvent"

    Returns internal.MediaStreamTrackEvent

  • Parameters

    • eventInterface: "MessageEvent"

    Returns internal.MessageEvent<any>

  • Parameters

    • eventInterface: "MouseEvent"

    Returns internal.MouseEvent

  • Parameters

    • eventInterface: "MouseEvents"

    Returns internal.MouseEvent

  • Parameters

    • eventInterface: "MutationEvent"

    Returns internal.MutationEvent

  • Parameters

    • eventInterface: "MutationEvents"

    Returns internal.MutationEvent

  • Parameters

    • eventInterface: "OfflineAudioCompletionEvent"

    Returns internal.OfflineAudioCompletionEvent

  • Parameters

    • eventInterface: "PageTransitionEvent"

    Returns internal.PageTransitionEvent

  • Parameters

    • eventInterface: "PaymentMethodChangeEvent"

    Returns internal.PaymentMethodChangeEvent

  • Parameters

    • eventInterface: "PaymentRequestUpdateEvent"

    Returns internal.PaymentRequestUpdateEvent

  • Parameters

    • eventInterface: "PictureInPictureEvent"

    Returns internal.PictureInPictureEvent

  • Parameters

    • eventInterface: "PointerEvent"

    Returns internal.PointerEvent

  • Parameters

    • eventInterface: "PopStateEvent"

    Returns internal.PopStateEvent

  • Parameters

    • eventInterface: "ProgressEvent"

    Returns internal.ProgressEvent<EventTarget>

  • Parameters

    • eventInterface: "PromiseRejectionEvent"

    Returns internal.PromiseRejectionEvent

  • Parameters

    • eventInterface: "RTCDTMFToneChangeEvent"

    Returns internal.RTCDTMFToneChangeEvent

  • Parameters

    • eventInterface: "RTCDataChannelEvent"

    Returns internal.RTCDataChannelEvent

  • Parameters

    • eventInterface: "RTCErrorEvent"

    Returns internal.RTCErrorEvent

  • Parameters

    • eventInterface: "RTCPeerConnectionIceErrorEvent"

    Returns internal.RTCPeerConnectionIceErrorEvent

  • Parameters

    • eventInterface: "RTCPeerConnectionIceEvent"

    Returns internal.RTCPeerConnectionIceEvent

  • Parameters

    • eventInterface: "RTCTrackEvent"

    Returns internal.RTCTrackEvent

  • Parameters

    • eventInterface: "SecurityPolicyViolationEvent"

    Returns internal.SecurityPolicyViolationEvent

  • Parameters

    • eventInterface: "SpeechSynthesisErrorEvent"

    Returns internal.SpeechSynthesisErrorEvent

  • Parameters

    • eventInterface: "SpeechSynthesisEvent"

    Returns internal.SpeechSynthesisEvent

  • Parameters

    • eventInterface: "StorageEvent"

    Returns internal.StorageEvent

  • Parameters

    • eventInterface: "SubmitEvent"

    Returns internal.SubmitEvent

  • Parameters

    • eventInterface: "TouchEvent"

    Returns internal.TouchEvent

  • Parameters

    • eventInterface: "TrackEvent"

    Returns internal.TrackEvent

  • Parameters

    • eventInterface: "TransitionEvent"

    Returns internal.TransitionEvent

  • Parameters

    • eventInterface: "UIEvent"

    Returns internal.UIEvent

  • Parameters

    • eventInterface: "UIEvents"

    Returns internal.UIEvent

  • Parameters

    • eventInterface: "WebGLContextEvent"

    Returns internal.WebGLContextEvent

  • Parameters

    • eventInterface: "WheelEvent"

    Returns internal.WheelEvent

  • Parameters

    • eventInterface: string

    Returns Event

  • Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.

    Parameters

    • root: internal.Node

      The root element or node to start traversing on.

    • Optional whatToShow: number

      The type of nodes or elements to appear in the node list

    • Optional filter: null | internal.NodeFilter

      A custom NodeFilter function to use. For more information, see filter. Use null for no filter.

    Returns internal.NodeIterator

  • Returns a ProcessingInstruction node whose target is target and data is data. If target does not match the Name production an "InvalidCharacterError" DOMException will be thrown. If data contains "?>" an "InvalidCharacterError" DOMException will be thrown.

    Parameters

    • target: string
    • data: string

    Returns internal.ProcessingInstruction

  • Returns an empty range object that has both of its boundary points positioned at the beginning of the document.

    Returns internal.Range

  • Creates a text string from the specified value.

    Parameters

    • data: string

      String that specifies the nodeValue property of the text node.

    Returns internal.Text

  • Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.

    Parameters

    • root: internal.Node

      The root element or node to start traversing on.

    • Optional whatToShow: number

      The type of nodes or elements to appear in the node list. For more information, see whatToShow.

    • Optional filter: null | internal.NodeFilter

      A custom NodeFilter function to use.

    Returns internal.TreeWalker

  • dispatchEvent(event: Event): boolean
  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    Parameters

    • event: Event

    Returns boolean

  • Returns the element for the specified x coordinate and the specified y coordinate.

    Parameters

    • x: number

      The x-offset

    • y: number

      The y-offset

    Returns null | internal.Element

  • execCommand(commandId: string, showUI?: boolean, value?: string): boolean
  • Executes a command on the current document, current selection, or the given range.

    deprecated

    Parameters

    • commandId: string

      String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.

    • Optional showUI: boolean

      Display the user interface, defaults to false.

    • Optional value: string

      Value to assign.

    Returns boolean

  • exitFullscreen(): Promise<void>
  • Stops document's fullscreen element from being displayed fullscreen and resolves promise when done.

    Returns Promise<void>

  • exitPictureInPicture(): Promise<void>
  • Returns Promise<void>

  • exitPointerLock(): void
  • Returns void

  • Returns a reference to the first object with the specified value of the ID attribute.

    Parameters

    • elementId: string

      String that specifies the ID value.

    Returns null | internal.HTMLElement

  • Returns a HTMLCollection of the elements in the object on which the method was invoked (a document or an element) that have all the classes given by classNames. The classNames argument is interpreted as a space-separated list of classes.

    Parameters

    • classNames: string

    Returns HTMLCollectionOf<internal.Element>

  • Gets a collection of objects based on the value of the NAME or ID attribute.

    Parameters

    • elementName: string

      Gets a collection of objects based on the value of the NAME or ID attribute.

    Returns NodeListOf<internal.HTMLElement>

  • If namespace and localName are "*" returns a HTMLCollection of all descendant elements.

    If only namespace is "*" returns a HTMLCollection of all descendant elements whose local name is localName.

    If only localName is "*" returns a HTMLCollection of all descendant elements whose namespace is namespace.

    Otherwise, returns a HTMLCollection of all descendant elements whose namespace is namespace and local name is localName.

    Parameters

    • namespaceURI: "http://www.w3.org/1999/xhtml"
    • localName: string

    Returns HTMLCollectionOf<internal.HTMLElement>

  • Parameters

    • namespaceURI: "http://www.w3.org/2000/svg"
    • localName: string

    Returns HTMLCollectionOf<internal.SVGElement>

  • Parameters

    • namespace: null | string
    • localName: string

    Returns HTMLCollectionOf<internal.Element>

  • Returns an object representing the current selection of the document that is loaded into the object displaying a webpage.

    Returns null | internal.Selection

  • hasChildNodes(): boolean
  • Returns whether node has children.

    Returns boolean

  • hasFocus(): boolean
  • Gets a value indicating whether the object currently has focus.

    Returns boolean

  • hasStorageAccess(): Promise<boolean>
  • Returns Promise<boolean>

  • importNode<T>(node: T, deep?: boolean): T
  • Returns a copy of node. If deep is true, the copy also includes the node's descendants.

    If node is a document or a shadow root, throws a "NotSupportedError" DOMException.

    Type Parameters

    Parameters

    • node: T
    • Optional deep: boolean

    Returns T

  • isDefaultNamespace(namespace: null | string): boolean
  • Parameters

    • namespace: null | string

    Returns boolean

  • Returns whether node and otherNode have the same properties.

    Parameters

    Returns boolean

  • lookupNamespaceURI(prefix: null | string): null | string
  • Parameters

    • prefix: null | string

    Returns null | string

  • lookupPrefix(namespace: null | string): null | string
  • Parameters

    • namespace: null | string

    Returns null | string

  • normalize(): void
  • Removes empty exclusive Text nodes and concatenates the data of remaining contiguous exclusive Text nodes into the first of their nodes.

    Returns void

  • Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.

    Parameters

    • Optional unused1: string
    • Optional unused2: string

    Returns internal.Document

  • Parameters

    • url: string | URL
    • name: string
    • features: string

    Returns null | internal.Window

  • Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.

    Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.

    Parameters

    Returns void

  • queryCommandEnabled(commandId: string): boolean
  • Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.

    deprecated

    Parameters

    • commandId: string

      Specifies a command identifier.

    Returns boolean

  • queryCommandIndeterm(commandId: string): boolean
  • Returns a Boolean value that indicates whether the specified command is in the indeterminate state.

    deprecated

    Parameters

    • commandId: string

      String that specifies a command identifier.

    Returns boolean

  • queryCommandState(commandId: string): boolean
  • Returns a Boolean value that indicates the current state of the command.

    deprecated

    Parameters

    • commandId: string

      String that specifies a command identifier.

    Returns boolean

  • queryCommandSupported(commandId: string): boolean
  • Returns a Boolean value that indicates whether the current command is supported on the current range.

    deprecated

    Parameters

    • commandId: string

      Specifies a command identifier.

    Returns boolean

  • queryCommandValue(commandId: string): string
  • Returns the current value of the document, range, or current selection for the given command.

    deprecated

    Parameters

    • commandId: string

      String that specifies a command identifier.

    Returns string

  • releaseEvents(): void
  • deprecated

    Returns void

  • removeChild<T>(child: T): T
  • removeEventListener<K>(type: K, listener: ((this: internal.Document, ev: DocumentEventMap[K]) => any), options?: boolean | EventListenerOptions): void
  • removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void
  • Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.

    Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.

    Parameters

    Returns void

  • requestStorageAccess(): Promise<void>
  • Returns Promise<void>

  • write(...text: string[]): void
  • Writes one or more HTML expressions to a document in the specified window.

    Parameters

    • Rest ...text: string[]

    Returns void

  • writeln(...text: string[]): void
  • Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.

    Parameters

    • Rest ...text: string[]

    Returns void

Generated using TypeDoc