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

Side by Side Diff: third_party/WebKit/LayoutTests/images/gif-loop-count.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function step2() { 4 function step2() {
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.notifyDone(); 6 testRunner.notifyDone();
7 } 7 }
8 function step1() { 8 function step1() {
9 document.getElementById('replaceme').src = 'resources/gif-loop-count.gif '; 9 document.getElementById('replaceme').src = 'resources/gif-loop-count.gif ';
10 setTimeout("step2()", 200); 10 setTimeout("step2()", 200);
11 } 11 }
12 function test() { 12 function test() {
13 if (window.testRunner) { 13 if (window.testRunner) {
14 testRunner.waitUntilDone(); 14 testRunner.waitUntilDone();
15 } 15 }
16 setTimeout("step1()", 200); 16 setTimeout("step1()", 200);
17 } 17 }
18 </script> 18 </script>
19 </head> 19 </head>
20 <body onload="test()"> 20 <body onload="test()">
21 <img src="resources/gif-loop-count.gif" style="position:absolute;left:0;top:0"> 21 <img src="resources/gif-loop-count.gif" style="position:absolute;left:0;top:0">
22 <img src="resources/gif-loop-count.png" id="replaceme" style="position:absolute; left:0;top:0"> 22 <img src="resources/gif-loop-count.png" id="replaceme" style="position:absolute; left:0;top:0">
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698