blob: effdb7270177ab343e3f45e0ed73555a75d77e03 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<iframe id="grandChildFrame" src="requestAnimationFrame-frame-2.html"></iframe>
<script>
var i = 0;
function step()
{
i++;
requestAnimationFrame(step);
}
requestAnimationFrame(step);
</script>
</body>
</html>