Provides special properties (beyond the HTMLElement object interface it also has available to it by inheritance) to manipulate elements and their content.

Hierarchy

Properties

ATTRIBUTE_NODE CDATA_SECTION_NODE COMMENT_NODE DOCUMENT_FRAGMENT_NODE DOCUMENT_NODE DOCUMENT_POSITION_CONTAINED_BY DOCUMENT_POSITION_CONTAINS DOCUMENT_POSITION_DISCONNECTED DOCUMENT_POSITION_FOLLOWING DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC DOCUMENT_POSITION_PRECEDING DOCUMENT_TYPE_NODE ELEMENT_NODE ENTITY_NODE ENTITY_REFERENCE_NODE NOTATION_NODE PROCESSING_INSTRUCTION_NODE TEXT_NODE accessKey accessKeyLabel ariaAtomic ariaAutoComplete ariaBusy ariaChecked ariaColCount ariaColIndex ariaColIndexText ariaColSpan ariaCurrent ariaDisabled ariaExpanded ariaHasPopup ariaHidden ariaInvalid ariaKeyShortcuts ariaLabel ariaLevel ariaLive ariaModal ariaMultiLine ariaMultiSelectable ariaOrientation ariaPlaceholder ariaPosInSet ariaPressed ariaReadOnly ariaRequired ariaRoleDescription ariaRowCount ariaRowIndex ariaRowIndexText ariaRowSpan ariaSelected ariaSetSize ariaSort ariaValueMax ariaValueMin ariaValueNow ariaValueText assignedSlot attributes autocapitalize autofocus baseURI childElementCount childNodes children classList className clientHeight clientLeft clientTop clientWidth contentEditable dataset dir draggable enterKeyHint firstChild firstElementChild hidden id inert innerHTML innerText inputMode isConnected isContentEditable lang lastChild lastElementChild localName namespaceURI nextElementSibling nextSibling nodeName nodeType nodeValue nonce? offsetHeight offsetLeft offsetParent offsetTop offsetWidth onabort onanimationcancel onanimationend onanimationiteration onanimationstart onauxclick onbeforeinput onblur oncancel oncanplay oncanplaythrough onchange onclick onclose oncontextmenu oncopy oncuechange oncut ondblclick ondrag ondragend ondragenter ondragleave ondragover ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformdata onfullscreenchange onfullscreenerror ongotpointercapture oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata onloadedmetadata onloadstart onlostpointercapture onmousedown onmouseenter onmouseleave onmousemove onmouseout onmouseover onmouseup onpaste onpause onplay onplaying onpointercancel onpointerdown onpointerenter onpointerleave onpointermove onpointerout onpointerover onpointerup onprogress onratechange onreset onresize onscroll onsecuritypolicyviolation onseeked onseeking onselect onselectionchange onselectstart onslotchange onstalled onsubmit onsuspend ontimeupdate ontoggle ontouchcancel? ontouchend? ontouchmove? ontouchstart? ontransitioncancel ontransitionend ontransitionrun ontransitionstart onvolumechange onwaiting onwebkitanimationend onwebkitanimationiteration onwebkitanimationstart onwebkittransitionend onwheel options outerHTML outerText ownerDocument parentElement parentNode part prefix previousElementSibling previousSibling role scrollHeight scrollLeft scrollTop scrollWidth shadowRoot slot spellcheck style tabIndex tagName textContent title translate

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.

accessKey: string
accessKeyLabel: string
ariaAtomic: string
ariaAutoComplete: string
ariaBusy: string
ariaChecked: string
ariaColCount: string
ariaColIndex: string
ariaColIndexText: string
ariaColSpan: string
ariaCurrent: string
ariaDisabled: string
ariaExpanded: string
ariaHasPopup: string
ariaHidden: string
ariaInvalid: string
ariaKeyShortcuts: string
ariaLabel: string
ariaLevel: string
ariaLive: string
ariaModal: string
ariaMultiLine: string
ariaMultiSelectable: string
ariaOrientation: string
ariaPlaceholder: string
ariaPosInSet: string
ariaPressed: string
ariaReadOnly: string
ariaRequired: string
ariaRoleDescription: string
ariaRowCount: string
ariaRowIndex: string
ariaRowIndexText: string
ariaRowSpan: string
ariaSelected: string
ariaSetSize: string
ariaSort: string
ariaValueMax: string
ariaValueMin: string
ariaValueNow: string
ariaValueText: string
assignedSlot: HTMLSlotElement
attributes: NamedNodeMap
autocapitalize: string
autofocus: boolean
baseURI: string

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

childElementCount: number
childNodes: NodeListOf<ChildNode>

Returns the children.

children: HTMLCollection

Returns the child elements.

classList: DOMTokenList

Allows for manipulation of element's class content attribute as a set of whitespace-separated tokens through a DOMTokenList object.

className: string

Returns the value of element's class content attribute. Can be set to change it.

clientHeight: number
clientLeft: number
clientTop: number
clientWidth: number
contentEditable: string
dataset: DOMStringMap
dir: string
draggable: boolean
enterKeyHint: string
firstChild: ChildNode

Returns the first child.

firstElementChild: Element

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

hidden: boolean
id: string

Returns the value of element's id content attribute. Can be set to change it.

inert: boolean
innerHTML: string
innerText: string
inputMode: string
isConnected: boolean

Returns true if node is connected and false otherwise.

isContentEditable: boolean
lang: string
lastChild: ChildNode

Returns the last child.

lastElementChild: Element

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

localName: string

Returns the local name.

namespaceURI: string

Returns the namespace.

nextElementSibling: Element

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

nextSibling: ChildNode

Returns the next sibling.

nodeName: string

Returns a string appropriate for the type of node.

nodeType: number

Returns the type of node.

nodeValue: string
nonce?: string
offsetHeight: number
offsetLeft: number
offsetParent: Element
offsetTop: number
offsetWidth: number
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any)

Type declaration

onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any)

Type declaration

onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any)

Type declaration

onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any)

Type declaration

onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any)

Type declaration

onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any)

Type declaration

onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any)

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onclose: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any)

Type declaration

oncuechange: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any)

Type declaration

ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any)

Type declaration

ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

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

Type declaration

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

Type declaration

Fires when an error occurs during object loading.

Param

The event.

onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any)

Type declaration

onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any)

Type declaration

onfullscreenchange: ((this: Element, ev: Event) => any)

Type declaration

    • (this: Element, ev: Event): any
    • Parameters

      • this: Element
      • ev: Event

      Returns any

onfullscreenerror: ((this: Element, ev: Event) => any)

Type declaration

    • (this: Element, ev: Event): any
    • Parameters

      • this: Element
      • ev: Event

      Returns any

ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

oninput: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

oninvalid: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any)

Type declaration

onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any)

Type declaration

onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any)

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any)

Type declaration

onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any)

Type declaration

onpause: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

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

Type declaration

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

Type declaration

onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any)

Type declaration

onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any)

Type declaration

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

Type declaration

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

Type declaration

onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any)

Type declaration

onscroll: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

    • (this: GlobalEventHandlers, ev: Event): any
    • Fires when the user repositions the scroll box in the scroll bar on the object.

      Parameters

      Returns any

onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any)

Type declaration

onseeked: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

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

Type declaration

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

Type declaration

onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

onselectstart: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

onslotchange: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

onstalled: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any)

Type declaration

onsuspend: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

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

Type declaration

ontoggle: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any)

Type declaration

ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any)

Type declaration

ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any)

Type declaration

ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any)

Type declaration

ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any)

Type declaration

ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any)

Type declaration

ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any)

Type declaration

ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any)

Type declaration

onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any)

Type declaration

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

Type declaration

    • (this: GlobalEventHandlers, ev: Event): any
    • Occurs when playback stops because the next frame of a video resource is not available.

      Parameters

      Returns any

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

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any)

Type declaration

options: HTMLCollectionOf<HTMLOptionElement>

Returns an HTMLCollection of the option elements of the datalist element.

outerHTML: string
outerText: string
ownerDocument: Document
parentElement: HTMLElement

Returns the parent element.

parentNode: ParentNode

Returns the parent.

part: DOMTokenList
prefix: string

Returns the namespace prefix.

previousElementSibling: Element

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

previousSibling: ChildNode

Returns the previous sibling.

role: string
scrollHeight: number
scrollLeft: number
scrollTop: number
scrollWidth: number
shadowRoot: ShadowRoot

Returns element's shadow root, if any, and if shadow root's mode is "open", and null otherwise.

slot: string

Returns the value of element's slot content attribute. Can be set to change it.

spellcheck: boolean
style: CSSStyleDeclaration
tabIndex: number
tagName: string

Returns the HTML-uppercased qualified name.

textContent: string
title: string
translate: boolean

Methods

  • Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.

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

    Parameters

    • Rest ...nodes: (string | Node)[]

    Returns void

  • 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

    • Rest ...nodes: (string | Node)[]

    Returns void

  • Type Parameters

    Parameters

    • node: T

    Returns T

  • Returns ElementInternals

  • Creates a shadow root for element and returns it.

    Parameters

    Returns ShadowRoot

  • Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.

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

    Parameters

    • Rest ...nodes: (string | Node)[]

    Returns void

  • Returns void

  • Returns void

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

    Parameters

    • Optional deep: boolean

    Returns Node

  • Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise.

    Type Parameters

    Parameters

    • selector: K

    Returns HTMLElementTagNameMap[K]

  • Type Parameters

    Parameters

    • selector: K

    Returns SVGElementTagNameMap[K]

  • Type Parameters

    • E extends Element<E> = Element

    Parameters

    • selectors: string

    Returns E

  • Returns a bitmask indicating the position of other relative to node.

    Parameters

    Returns number

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

    Parameters

    Returns 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

  • Parameters

    Returns void

  • Returns element's first attribute whose qualified name is qualifiedName, and null if there is no such attribute otherwise.

    Parameters

    • qualifiedName: string

    Returns string

  • Returns element's attribute whose namespace is namespace and local name is localName, and null if there is no such attribute otherwise.

    Parameters

    • namespace: string
    • localName: string

    Returns string

  • Returns the qualified names of all element's attributes. Can contain duplicates.

    Returns string[]

  • Parameters

    • qualifiedName: string

    Returns Attr

  • Parameters

    • namespace: string
    • localName: string

    Returns Attr

  • Returns DOMRect

  • Returns DOMRectList

  • 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<Element>

  • Type Parameters

    Parameters

    • qualifiedName: K

    Returns HTMLCollectionOf<HTMLElementTagNameMap[K]>

  • Type Parameters

    Parameters

    • qualifiedName: K

    Returns HTMLCollectionOf<SVGElementTagNameMap[K]>

  • Parameters

    • qualifiedName: string

    Returns HTMLCollectionOf<Element>

  • Parameters

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

    Returns HTMLCollectionOf<HTMLElement>

  • Parameters

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

    Returns HTMLCollectionOf<SVGElement>

  • Parameters

    • namespace: string
    • localName: string

    Returns HTMLCollectionOf<Element>

  • Returns node's root.

    Parameters

    Returns Node

  • Returns true if element has an attribute whose qualified name is qualifiedName, and false otherwise.

    Parameters

    • qualifiedName: string

    Returns boolean

  • Returns true if element has an attribute whose namespace is namespace and local name is localName.

    Parameters

    • namespace: string
    • localName: string

    Returns boolean

  • Returns true if element has attributes, and false otherwise.

    Returns boolean

  • Returns whether node has children.

    Returns boolean

  • Parameters

    • pointerId: number

    Returns boolean

  • Parameters

    Returns Element

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Type Parameters

    Parameters

    • node: T
    • child: Node

    Returns T

  • Parameters

    • namespace: string

    Returns boolean

  • Returns whether node and otherNode have the same properties.

    Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    • prefix: string

    Returns string

  • Parameters

    • namespace: string

    Returns string

  • Returns true if matching selectors against element's root yields element, and false otherwise.

    Parameters

    • selectors: string

    Returns boolean

  • Removes empty exclusive Text nodes and concatenates the data of remaining contiguous exclusive Text nodes into the first of their nodes.

    Returns void

  • 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

    • Rest ...nodes: (string | Node)[]

    Returns void

  • Returns the first element that is a descendant of node that matches selectors.

    Type Parameters

    Parameters

    • selectors: K

    Returns HTMLElementTagNameMap[K]

  • Type Parameters

    Parameters

    • selectors: K

    Returns SVGElementTagNameMap[K]

  • Type Parameters

    • E extends Element<E> = Element

    Parameters

    • selectors: string

    Returns E

  • Returns all element descendants of node that match selectors.

    Type Parameters

    Parameters

    • selectors: K

    Returns NodeListOf<HTMLElementTagNameMap[K]>

  • Type Parameters

    Parameters

    • selectors: K

    Returns NodeListOf<SVGElementTagNameMap[K]>

  • Type Parameters

    • E extends Element<E> = Element

    Parameters

    • selectors: string

    Returns NodeListOf<E>

  • Parameters

    • pointerId: number

    Returns void

  • Removes node.

    Returns void

  • Removes element's first attribute whose qualified name is qualifiedName.

    Parameters

    • qualifiedName: string

    Returns void

  • Removes element's attribute whose namespace is namespace and local name is localName.

    Parameters

    • namespace: string
    • localName: string

    Returns void

  • Parameters

    Returns Attr

  • Type Parameters

    Parameters

    • child: T

    Returns T

  • Type Parameters

    Parameters

    • node: Node
    • child: T

    Returns T

  • 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

    • Rest ...nodes: (string | Node)[]

    Returns void

  • Replaces 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

    • Rest ...nodes: (string | Node)[]

    Returns void

  • Displays element fullscreen and resolves promise when done.

    When supplied, options's navigationUI member indicates whether showing navigation UI while in fullscreen is preferred or not. If set to "show", navigation simplicity is preferred over screen space, and if set to "hide", more screen space is preferred. User agents are always free to honor user preference over the application's. The default value "auto" indicates no application preference.

    Parameters

    Returns Promise<void>

  • Returns void

  • Parameters

    Returns void

  • Parameters

    • x: number
    • y: number

    Returns void

  • Parameters

    Returns void

  • Parameters

    • x: number
    • y: number

    Returns void

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    • x: number
    • y: number

    Returns void

  • Sets the value of element's first attribute whose qualified name is qualifiedName to value.

    Parameters

    • qualifiedName: string
    • value: string

    Returns void

  • Sets the value of element's attribute whose namespace is namespace and local name is localName to value.

    Parameters

    • namespace: string
    • qualifiedName: string
    • value: string

    Returns void

  • Parameters

    Returns Attr

  • Parameters

    Returns Attr

  • Parameters

    • pointerId: number

    Returns void

  • If force is not given, "toggles" qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName.

    Returns true if qualifiedName is now present, and false otherwise.

    Parameters

    • qualifiedName: string
    • Optional force: boolean

    Returns boolean

  • Deprecated

    This is a legacy alias of matches.

    Parameters

    • selectors: string

    Returns boolean