Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / animation / script-tests / request-animation-frame-subframe.html
blob26c31b5413dab92a0a2e22abd62f56126c8f8ef9
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
8 window.requestAnimationFrame(function() {
9 parent.callbackInvoked = true;
10 });
12 window.requestAnimationFrame(function() {
13 parent.doCheckResult();
14 });
16 window.requestAnimationFrame(function() {
17 parent.doTestDone();
18 });
19 </script>
20 </body>
21 </html>