summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/resources/make_long_task.js
blob: a52d6d839298ccbd3c984984a3038c7797cccc34 (plain)
1
2
3
4
(function () {
  let now = window.performance.now();
  while (window.performance.now() < now + 60);
}());