Chromium Code Reviews| Index: chrome/test/data/android/images.html |
| diff --git a/chrome/test/data/android/images.html b/chrome/test/data/android/images.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8c7488ef87cc00fd0f1276ef7db2f78fe1c8e58f |
| --- /dev/null |
| +++ b/chrome/test/data/android/images.html |
| @@ -0,0 +1,12 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <script> |
| + function getImageHeight() { |
| + var img = document.getElementById('image'); |
| + if (img.height == null) |
| + return 0; |
| + return img.height; |
| + } |
| + </script> |
| + <body>Test for loading images.<img id='image' src='img.png' /></body> |
| +</html> |