OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body> |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 window.onload = function() { | 7 window.onload = function() { |
8 document.getElementById('results').innerHTML = | 8 document.getElementById('results').innerHTML = |
9 document.getElementsByTagName('img')[0].width + 'x' + | 9 document.getElementsByTagName('img')[0].width + 'x' + |
10 document.getElementsByTagName('img')[0].height + ' ' + | 10 document.getElementsByTagName('img')[0].height + ' ' + |
11 document.getElementsByTagName('img')[1].width + 'x' + | 11 document.getElementsByTagName('img')[1].width + 'x' + |
12 document.getElementsByTagName('img')[1].height + ' ' + | 12 document.getElementsByTagName('img')[1].height + ' ' + |
13 document.getElementsByTagName('img')[2].width + 'x' + | 13 document.getElementsByTagName('img')[2].width + 'x' + |
14 document.getElementsByTagName('img')[2].height + ' ' + | 14 document.getElementsByTagName('img')[2].height + ' ' + |
15 document.getElementsByTagName('img')[3].width + 'x' + | 15 document.getElementsByTagName('img')[3].width + 'x' + |
16 document.getElementsByTagName('img')[3].height + ' ' + | 16 document.getElementsByTagName('img')[3].height + ' ' + |
17 document.getElementsByTagName('img')[4].width + 'x' + | 17 document.getElementsByTagName('img')[4].width + 'x' + |
18 document.getElementsByTagName('img')[4].height; | 18 document.getElementsByTagName('img')[4].height; |
19 } | 19 } |
20 </script> | 20 </script> |
21 <img src="resources/webp-animated.webp"> | 21 <img src="resources/webp-animated.webp"> |
22 <img src="resources/webp-animated-opaque.webp"> | 22 <img src="resources/webp-animated-opaque.webp"> |
23 <img src="resources/webp-animated-no-blend.webp"> | 23 <img src="resources/webp-animated-no-blend.webp"> |
24 <img src="resources/webp-animated-large.webp"> | 24 <img src="resources/webp-animated-large.webp"> |
25 <img src="resources/webp-animated-icc-xmp.webp"> | 25 <img src="resources/webp-animated-icc-xmp.webp"> |
26 <div id="results"></div> | 26 <div id="results"></div> |
27 </body> | 27 </body> |
28 </html> | 28 </html> |
OLD | NEW |