1 description("Tests adding one callback within another");
3 var e = document.getElementById("e");
5 window.requestAnimationFrame(function() {
8 window.requestAnimationFrame(function() {
9 window.requestAnimationFrame(function() {
10 shouldBeFalse("sameFrame");
12 requestAnimationFrame(function() {
13 isSuccessfullyParsed();
14 if (window.testRunner)
15 testRunner.notifyDone();
18 window.requestAnimationFrame(function() {
22 if (window.testRunner)
23 testRunner.waitUntilDone();