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();
10 testRunner.notifyDone();
13 if (window.testRunner)
14 testRunner.waitUntilDone();