Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.
function buffer_full(event) {
if (performance === undefined) {
console.log("Performance interface NOT supported.");
return;
}
// Remove all of the resource timing entries
performance.clearResourceTimings();
// Set the new size at 200 resource timing entries (PerformanceEntry objects)
performance.setResourceTimingBufferSize(200);
}
<body onresourcetimingbufferfull="buffer_full(event)">