javascriptgoogle-chromebrowserresource-timing-api

Which Version of Chrome supports window.performance.clearResourceTimings and what is the alternative


Since when does chrome support window.performance.clearResourceTimings and what is the alternative if it is not available? I can't find any details in the release notes or MDN. There is a clearMarks function but it does not reset the list of items.


Solution

  • According to this bug report, performance.clearResourceTimings and performance.setResourceTimingBufferSize are prefixed in Chrome since v.30.0.1549.0

    You should then call performance.webkitClearResourceTimings until this bug is fixed.