Results 3721 - 3740 of 3,929

PerformanceTiming.fetchStart

The PerformanceTiming.fetchStart read-only property returns an unsigned long long representing the moment, in miliseconds since the UNIX epoch, the browser is ready to fetch the document using an HTTP request. This moment is before the check to any application cache.
API HTTP request Navigation Timing PerformanceTiming Property Read-only Reference Référence

PerformanceTiming.loadEventEnd

The PerformanceTiming.loadEventEnd read-only property returns an unsigned long long representing the moment, in miliseconds since the UNIX epoch, when the load event handler terminated, that is when the load event is completed. If this event has not yet been sent, or is not yet completed, it returns 0.
API Event Handler Navigation Timing PerformanceTiming Property Read-only Reference Référence

PerformanceTiming.navigationStart

The PerformanceTiming.navigationStart read-only property returns an unsigned long long representing the moment, in miliseconds since the UNIX epoch, right after the prompt for unload terminates on the previous document in the same browsing context. If there is no previous document, this value will be the same as PerformanceTiming.fetchStart.
API Navigation Timing Performance PerformanceTiming.navigationStart Property Read-only Reference Référence

PositionSensorVRDevice.getState()

The getState() method of the PositionSensorVRDevice interface returns the current state of the position sensor for the current frame (e.g. within the current window.requestAnimationFrame callback) or for the previous frame, contained with a VRPositionState object. This is the method you'd normally want to use, versus PositionSensorVRDevice.getImmediateState.
API Experimental Expérimental Method Obsolete PositionSensorVRDevice Reference Référence Virtual Reality VR WebVR

PositionSensorVRDevice.resetSensor()

The resetSensor() method of the VRDevice interface can be used to reset the sensor if desired, returning the position and orientation values to zero.
API Experimental Expérimental Method Obsolete PositionSensorVRDevice Reference resetSensor Référence Virtual Reality VR WebVR

PromiseRejectionEvent.promise

The PromiseRejectionEvent.promise read-only property indicates the JavaScript Promise which has been rejected. You can examine the event's PromiseRejectionEvent.reason property to learn why the promise was rejected.
API events Events HTML DOM JavaScript Promise PromiseRejectionEvent Promises Property Reference

PromiseRejectionEvent.reason

The PromiseRejectionEvent.reason read-only property is any JavaScript value or Object which provides the reason passed into Promise.reject(). This in theory provides information about why the promise was rejected.
API Events events HTML DOM JavaScript PromiseRejectionEvent Promises Property reason Reference

PromiseWorker.jsm

A PromiseWorker is a ChromeWorker except instead of calling postMessage() to send a message, you call post(), which returns a Promise. JavaScript files imported into the worker scope and main thread scope which allows posting to the worker and receiving in the form of a promise. Like ChromeWorker objects, PromiseWorker is mostly used for js-ctypes but it is not limited to that. There is no XPCOM access, similar to ChromeWorker. This answers the question "When should I use a PromiseWorker?", and the answer is, whenever you would normally use a ChromeWorker, but want postMessage to return promises.
add-ons Add-ons API Extensions Guide js-ctypes NeedsContent Workers

Selection.anchorNode

The Selection.anchorNode read-only property returns the Node in which the selection begins.
API Experimental Expérimental HTML Editing Property Read-only Reference Référence Selection

Selection.anchorOffset

The Selection.anchorOffset read-only property returns the number of characters that the selection's anchor is offset within the Selection.anchorNode.
API Experimental Expérimental HTML Editing Property Read-only Reference Référence Selection

Selection.focusNode

Selection.focusNode read-only property returns the Node, in which selection ends.
API Experimental Expérimental HTML Editing Property Read-only Reference Référence Selection