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

Side by Side Diff: LayoutTests/fast/events/resize-raf-timing.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 4
5 <iframe id="iframe"></iframe> 5 <iframe id="iframe"></iframe>
6 6
7 <script> 7 <script>
8 description("Test that resize events are fired at requestAnimationFrame timing") ; 8 description("Test that resize events are fired at requestAnimationFrame timing") ;
9 9
10 var jsTestIsAsync = true; 10 var jsTestIsAsync = true;
(...skipping 11 matching lines...) Expand all
22 finishJSTest(); 22 finishJSTest();
23 }); 23 });
24 }; 24 };
25 25
26 for (var i = 0; i < 5; ++i) { 26 for (var i = 0; i < 5; ++i) {
27 iframe.style.width = i + 'px'; 27 iframe.style.width = i + 'px';
28 iframe.offsetTop; 28 iframe.offsetTop;
29 } 29 }
30 </script> 30 </script>
31 31
32 <script src="../js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698