Results 201 - 220 of 1,243

Range.collapsed

The Range.collapsed read-only property returns a Boolean flag indicating whether the start and end points of the Range are at the same position. It returns true if the start and end boundary points of the Range are the same point in the DOM, false if not.
API DOM DOM Reference Property Range Reference Référence

Range.createContextualFragment()

The Range.createContextualFragment() method returns a DocumentFragment by invoking the HTML fragment parsing algorithm or the XML fragment parsing algorithm with the start of the range (the parent of the selected node) as the context node. The HTML fragment parsing algorithm is used if the range belongs to a Document whose HTMLness bit is set. In the HTML case, if the context node would be html, for historical reasons the fragment parsing algorithm is invoked with body as the context instead.
API DOM DOM Reference Method Range Reference Référence

StyleSheet

An object implementing the StyleSheet interface represents a single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface.
API CSS CSSOM DOM DOM Reference Reference Référence

TouchEvent.changedTouches

A TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
API DOM DOM Reference Mobile Property Reference Référence touch

TouchEvent.targetTouches

A TouchList listing all the Touch objects for touch points that are still in contact with the touch surface and whose touchstart event occurred inside the same target element as the current target element.
API DOM DOM Reference Mobile Property Reference Référence touch

TouchEvent.touches

A TouchList listing all the Touch objects for touch points that are currently in contact with the touch surface, regardless of whether or not they've changed or what their target element was at touchstart time.
API DOM DOM Reference Mobile Property Reference Référence touch

TouchList

The TouchList interface represents a list of contact points with a touch surface; for example, if the user has three fingers on the touch surface (such as a screen or trackpad), the corresponding TouchList object would have one Touch object for each finger, for a total of three entries.
API DOM DOM Reference Mobile Reference Référence touch TouchList

TouchList.item()

Returns the Touch object at the specified index in the TouchList.
API DOM DOM Reference Method Mobile Reference Référence touch

TouchList.length

This read-only property indicates the number of items (touch points) in a TouchList.
API DOM DOM Reference Mobile Property Reference Référence touch

TreeWalker.previousSibling()

The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. I there is no such node, return null and the current node is not changed.
API createTreeWalker DOM DOM Reference Method TreeWalker treeWalker.previousSibling

USVString

USVString corresponds to the set of all possible sequences of unicode scalar values. USVString maps to a String when returned in JavaScript; it's generally only used for APIs that perform text processing and need a string of unicode scalar values to operate on.
API DOM DOM Reference Reference Référence String WebIDL

cancelIdleCallback

The Window.cancelIdleCallback() enables you to cancel a callback previously scheduled with Window.requestIdleCallback.
API DOM DOM Reference JavaScript timers Method Reference

Window.frameElement

Returns the element (such as <iframe> or <object>) in which the window is embedded, or null if the element is either top-level or is embedded into a document with a different script origin; that is, in cross-origin situations.
API DOM DOM Reference Gecko Property Reference Window

Window.frames

Returns the window itself, which is an array-like object, listing the direct sub-frames of the current window.
API DOM DOM Reference Gecko NeedsContent NeedsUpdate Property Reference Référence