The onresourcetimingbufferfull
property is an event handler
that will be called when the resourcetimingbufferfull
event is fired. This event is fired when the browser's resource timing performance buffer is full.
callback = performance.onresourcetimingbufferfull = buffer_full_cb;
EventHandler
that is invoked when the resourcetimingbufferfull
event is fired.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()">
Specification | Status | Comment |
---|---|---|
Resource Timing Level 1 The definition of 'onresourcetimingbufferfull' in that specification. | Candidate Recommendation | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 46
|
? | Yes | No | No | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 46
|
46
|
? | Yes | Yes | No | ? |
resourcetimingbufferfull
eventPerformance.clearResourceTimings()
Performance.setResourceTimingBufferSize()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Performance/onresourcetimingbufferfull