Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(445)

Side by Side Diff: LayoutTests/fast/animation/script-tests/request-animation-frame-prefix.js

Issue 11876026: Merge 139509 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 description("Tests the timestamps provided to prefixed webkitRequestAnimationFra me callbacks"); 1 description("Tests the timestamps provided to prefixed webkitRequestAnimationFra me callbacks");
2 2
3 var firstTimestamp = undefined; 3 var firstTimestamp = undefined;
4 var secondTimestamp = undefined; 4 var secondTimestamp = undefined;
5 var legacyFirstTimestamp = undefined; 5 var legacyFirstTimestamp = undefined;
6 var legacySecondTimestamp = undefined; 6 var legacySecondTimestamp = undefined;
7 var deltaError = undefined; 7 var deltaError = undefined;
8 8
9 function busyWait(millis) { 9 function busyWait(millis) {
10 var start = Date.now(); 10 var start = Date.now();
(...skipping 26 matching lines...) Expand all
37 testRunner.display(); 37 testRunner.display();
38 }); 38 });
39 39
40 if (window.testRunner) 40 if (window.testRunner)
41 window.setTimeout(function() { 41 window.setTimeout(function() {
42 testRunner.display(); 42 testRunner.display();
43 }); 43 });
44 44
45 if (window.testRunner) 45 if (window.testRunner)
46 testRunner.waitUntilDone(); 46 testRunner.waitUntilDone();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698