Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: chrome/test/data/android/images.html

Issue 1068223002: Implement Site Settings \ Images category. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync'ed to latest Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698