<html> | |
<body> | |
<script> | |
if (window.layoutTestController) | |
layoutTestController.dumpAsText(); | |
window.onload = function() { | |
document.getElementById('results').innerHTML = | |
document.getElementsByTagName('img')[0].width + 'x' + | |
document.getElementsByTagName('img')[0].height; | |
} | |
</script> | |
<img src="resources/test.webp"> | |
<div id="results"></div> | |
</body> | |
</html> |