OLD | NEW |
1 <!DOCTYPE> | 1 <!DOCTYPE> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Image layer content change</title> | 4 <title>Image layer content change</title> |
5 | 5 |
6 <style type="text/css" media="screen"> | 6 <style type="text/css" media="screen"> |
7 #image { | 7 #image { |
8 width: 200px; | 8 width: 200px; |
9 height: 200px; | 9 height: 200px; |
10 -webkit-transform: translateZ(0); | 10 transform: translateZ(0); |
11 } | 11 } |
12 </style> | 12 </style> |
13 <script type="text/javascript" charset="utf-8"> | 13 <script type="text/javascript" charset="utf-8"> |
14 if (window.testRunner) { | 14 if (window.testRunner) { |
15 testRunner.waitUntilDone(); | 15 testRunner.waitUntilDone(); |
16 testRunner.dumpAsTextWithPixelResults(); | 16 testRunner.dumpAsTextWithPixelResults(); |
17 } | 17 } |
18 function doTest() | 18 function doTest() |
19 { | 19 { |
20 var image = document.getElementById("image"); | 20 var image = document.getElementById("image"); |
(...skipping 13 matching lines...) Expand all Loading... |
34 </script> | 34 </script> |
35 </head> | 35 </head> |
36 <body> | 36 <body> |
37 <!-- When the test is done, there should only be a green square on the page --> | 37 <!-- When the test is done, there should only be a green square on the page --> |
38 | 38 |
39 <!-- Start with a red image --> | 39 <!-- Start with a red image --> |
40 <img id="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAA
ACQd1PeAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAADElEQVR4nGP4z8AAAAMBAQDJ/pLvAAAAAElFTkSuQ
mCC" /> | 40 <img id="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAA
ACQd1PeAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAADElEQVR4nGP4z8AAAAMBAQDJ/pLvAAAAAElFTkSuQ
mCC" /> |
41 | 41 |
42 </body> | 42 </body> |
43 </html> | 43 </html> |
OLD | NEW |