summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/long-animation-frame/tentative/resources/raf-generates-loaf.js
blob: b7544af4e5664e05f3ae66ed939b836273a25eec (plain)
1
2
3
4
5
requestAnimationFrame(() => {
  const deadline = performance.now() + 360;
  while (performance.now() < deadline) {
  }
});