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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/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
(Empty)
1 <html>
2 <head>
3 <script>
4 function step2() {
5 if (window.testRunner)
6 testRunner.notifyDone();
7 }
8 function step1() {
9 document.getElementById('replaceme').src = 'resources/gif-loop-count.gif ';
10 setTimeout("step2()", 200);
11 }
12 function test() {
13 if (window.testRunner) {
14 testRunner.waitUntilDone();
15 }
16 setTimeout("step1()", 200);
17 }
18 </script>
19 </head>
20 <body onload="test()">
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">
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698