mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
5 lines
165 B
JavaScript
5 lines
165 B
JavaScript
window.requestAnimationFrame(function() {
|
|
/* Generate a slow task. */
|
|
var begin = window.performance.now();
|
|
while (window.performance.now() < begin + 51);
|
|
});
|