Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
LayoutTests
/
fast
/
animation
/
resources
/
requestAnimationFrame-frame.html
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>