<body>
<iframe id="grandChildFrame" src="requestAnimationFrame-frame-2.html"></iframe>
<script>
+
var i = 0;
-requestAnimationFrame(function() {
+function step()
+{
i++;
-});
+ requestAnimationFrame(step);
+}
+
+requestAnimationFrame(step);
</script>
</body>
</html>