git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Regression(183998): Disqus comments take a very long time to load
[WebKit-https.git]
/
LayoutTests
/
fast
/
animation
/
resources
/
requestAnimationFrame-frame.html
1
<!DOCTYPE html>
2
<html>
3
<body>
4
<iframe id="grandChildFrame" src="requestAnimationFrame-frame-2.html"></iframe>
5
<script>
6
7
var i = 0;
8
function step()
9
{
10
i++;
11
requestAnimationFrame(step);
12
}
13
14
requestAnimationFrame(step);
15
</script>
16
</body>
17
</html>