Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / animation / script-tests / request-animation-frame-within-callback.js
blob72886d8f5c241af4f677cec03557ed147700bdb5
1 description("Tests adding one callback within another");
3 var e = document.getElementById("e");
4 var sameFrame;
5 window.requestAnimationFrame(function() {
6     sameFrame = true;
7 }, e);
8 window.requestAnimationFrame(function() {
9     window.requestAnimationFrame(function() {
10         shouldBeFalse("sameFrame");
11     }, e);
12     requestAnimationFrame(function() {
13         isSuccessfullyParsed();
14         if (window.testRunner)
15             testRunner.notifyDone();
16     });
17 }, e);
18 window.requestAnimationFrame(function() {
19     sameFrame = false;
20 }, e);
22 if (window.testRunner)
23     testRunner.waitUntilDone();