Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / animation / script-tests / request-animation-frame.js
blobcaa1fb3a0d6710af850f6e1d8eb14f61989aa2da
1 description("Tests basic use of requestAnimationFrame");
3 var e = document.getElementById("e");
4 var callbackInvoked = false;
5 window.requestAnimationFrame(function() {
6     callbackInvoked = true;
7     shouldBeTrue("callbackInvoked");
8     isSuccessfullyParsed();
9     if (window.testRunner)
10         testRunner.notifyDone();
11 }, e);
13 if (window.testRunner)
14     testRunner.waitUntilDone();