Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / chrome / test / data / android / images.html
blob8c7488ef87cc00fd0f1276ef7db2f78fe1c8e58f
1 <!DOCTYPE html>
2 <html>
3 <script>
4 function getImageHeight() {
5 var img = document.getElementById('image');
6 if (img.height == null)
7 return 0;
8 return img.height;
10 </script>
11 <body>Test for loading images.<img id='image' src='img.png' /></body>
12 </html>