summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/support/worker-request-animation-frame.js
blob: b73781244ebd3fcad445f0227e33411ac08a5205 (plain)
1
2
3
4
5
6
self.onmessage = function(event) {
  requestAnimationFrame(time => {
    postMessage(time);
    self.close();
  });
}