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

Side by Side 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: Address feedback + cleanup 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 unified diff | Download patch
OLDNEW
(Empty)
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;
9 }
10 </script>
11 <body>Test for loading images.<img id='image' src='img.png' /></body>
12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698