Web/API/Performance/resourcetimingbufferfull event

From Get docs


The resourcetimingbufferfull event is fired when the browser's resource timing buffer is full.

Bubbles Yes
Cancelable Yes
Interface Event
Event handler property onresourcetimingbufferfull

Examples

The following example sets a callback function on the onresourcetimingbufferfull property.

function buffer_full(event) {
  console.log("WARNING: Resource Timing Buffer is FULL!");
  performance.setResourceTimingBufferSize(200);
}
function init() {
  // Set a callback if the resource buffer becomes filled
  performance.onresourcetimingbufferfull = buffer_full;
}
<body onload="init()">

Note that you could also set up the handler using the addEventListener() function:

performance.addEventListener('resourcetimingbufferfull', buffer_full);

Specifications

Specification Status Comment
Resource Timing Level 1The definition of 'onresourcetimingbufferfull' in that specification. Candidate Recommendation Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
resourcetimingbufferfull event

Chrome Full support 46


Full support 46


No support 22 — 57

Alternate Name'

Alternate Name' Uses the non-standard name: webkitresourcetimingbufferfull

Edge

Full support ≤79

Firefox

Full support Yes

IE

No support No

Opera

No support No

Safari

Full support 11

WebView Android Full support 46


Full support 46


No support ? — 57

Alternate Name'

Alternate Name' Uses the non-standard name: webkitresourcetimingbufferfull

Chrome Android Full support 46


Full support 46


No support 25 — 57

Alternate Name'

Alternate Name' Uses the non-standard name: webkitresourcetimingbufferfull

Firefox Android

Full support Yes

Opera Android

Full support Yes

Safari iOS

No support No

Samsung Internet Android Full support 5.0


Full support 5.0


No support 1.5 — 7.0

Alternate Name'

Alternate Name' Uses the non-standard name: webkitresourcetimingbufferfull

Legend

Full support  
Full support
No support  
No support
Uses a non-standard name.'
Uses a non-standard name.


See Also