blob: 195a9cc3ff3edd5e556b091e57477b3d79a85459 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
var i = 0;
function step()
{
i++;
requestAnimationFrame(step);
}
requestAnimationFrame(step);
</script>
</body>
</html>