OLD | NEW |
| (Empty) |
1 <html> | |
2 <body> | |
3 <script> | |
4 if (window.testRunner) | |
5 testRunner.dumpAsText(); | |
6 | |
7 window.onload = function() { | |
8 document.getElementById('results').innerHTML = | |
9 document.getElementsByTagName('img')[0].width + 'x' + | |
10 document.getElementsByTagName('img')[0].height + ' ' + | |
11 document.getElementsByTagName('img')[1].width + 'x' + | |
12 document.getElementsByTagName('img')[1].height + ' ' + | |
13 document.getElementsByTagName('img')[2].width + 'x' + | |
14 document.getElementsByTagName('img')[2].height; | |
15 } | |
16 </script> | |
17 <img src="resources/test.webp"> | |
18 <img src="resources/test2.webp"> | |
19 <img src="resources/test3.webp"> | |
20 <div id="results"></div> | |
21 </body> | |
22 </html> | |
OLD | NEW |