OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Check to disappear the afterimage after changing the style of an img tag.
</title> | 4 <title>Check to disappear the afterimage after changing the style of an img tag.
</title> |
5 <style type="text/css"> | 5 <style type="text/css"> |
6 div.cell | 6 div.cell |
7 { | 7 { |
8 -webkit-transform: translate3d(0, 0, 0); | 8 -webkit-transform: translate3d(0, 0, 0); |
9 } | 9 } |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 setTimeout(function() { | 37 setTimeout(function() { |
38 if (window.testRunner) { | 38 if (window.testRunner) { |
39 window.testRunner.notifyDone(); | 39 window.testRunner.notifyDone(); |
40 } | 40 } |
41 }, 10); | 41 }, 10); |
42 } | 42 } |
43 | 43 |
44 window.onload = function () | 44 window.onload = function () |
45 { | 45 { |
46 if (window.testRunner) { | 46 if (window.testRunner) { |
47 window.testRunner.dumpAsText(true); | 47 window.testRunner.dumpAsTextWithPixelResults(); |
48 window.testRunner.waitUntilDone(); | 48 window.testRunner.waitUntilDone(); |
49 } | 49 } |
50 | 50 |
51 setTimeout(function() { | 51 setTimeout(function() { |
52 updateStack(); | 52 updateStack(); |
53 }, 200); | 53 }, 200); |
54 } | 54 } |
55 </script> | 55 </script> |
56 | 56 |
57 </body> | 57 </body> |
58 </html> | 58 </html> |
59 | 59 |
OLD | NEW |