Results 61 - 69 of 69

PerformanceObserver()

The PerformanceObserver() constructor creates a new PerformanceObserver object with the given observer callback. The observer callback is invoked when performance entry events are recorded for the entry types that have been registered, via the observe() method.
API Constructor PerformanceObserver Reference Web Performance

PerformanceObserverEntryList.getEntries()

The getEntries() method of the PerformanceObserverEntryList interface returns a list of explicitly observed performance entry objects for a given filter. The list's members are determined by the set of entry types specified in the call to the observe() method. The list is available in the observer's callback function (as the first parameter in the callback).
API Method PerformanceObserverEntryList Reference Web Performance

PerformanceObserverEntryList.getEntriesByName()

The getEntriesByName() method of the PerformanceObserverEntryList interface returns a list of explicitly observed performance entry objects for a given name and entry type. The list's members are determined by the set of entry types specified in the call to the observe() method. The list is available in the observer's callback function (as the first parameter in the callback).
API Method PerformanceObserverEntryList Reference Web Performance

PerformanceObserverEntryList.getEntriesByType()

The getEntriesByType() method of the PerformanceObserverEntryList returns a list of explicitly observed performance entry objects for a given performance entry type. The list's members are determined by the set of entry types specified in the call to the observe() method. The list is available in the observer's callback function (as the first parameter in the callback).
API Method PerformanceObserverEntryList Reference Web Performance

Navigator

The Navigator interface represents the state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities.
API HTML DOM Interface JavaScript Reference Web Performance

Navigator.sendBeacon()

The navigator.sendBeacon() method can be used to asynchronously transfer a small amount of data over HTTP to a web server.
API Beacon Experimental Method Navigator Networking Reference sendBeacon Web Performance

Performance

The Performance interface represents timing-related performance information for the given page.
API Interface Navigation Timing Performance performance Reference Web Performance

Performance.now()

The Performance.now() method returns a DOMHighResTimeStamp, measured in milliseconds, accurate to one thousandth of a millisecond.
API Method Performance performance Reference Web Performance API