Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / animation / request-animation-frame-iframe.html
blob4b9a6f88e4253b02912f600a0e4425ad687819ed
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <iframe src="script-tests/request-animation-frame-subframe.html" width="700" height="500"></iframe>
8 <script type="text/javascript" charset="utf-8">
9 description("Tests requestAnimationFrame in an iframe");
11 var callbackInvoked = false;
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
18 function doCheckResult()
20 shouldBeTrue("callbackInvoked");
23 function doTestDone()
25 isSuccessfullyParsed();
26 if (window.testRunner)
27 testRunner.notifyDone();
29 </script>
30 </body>
31 </html>