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

Unified Diff: LayoutTests/fast/images/webp-image-decoding.html

Issue 10860057: Merge 125869 - Source/WebCore: libwebp-0.2.0: handle alpha channel if present (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 4 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: LayoutTests/fast/images/webp-image-decoding.html
===================================================================
--- LayoutTests/fast/images/webp-image-decoding.html (revision 126107)
+++ LayoutTests/fast/images/webp-image-decoding.html (working copy)
@@ -7,10 +7,16 @@
window.onload = function() {
document.getElementById('results').innerHTML =
document.getElementsByTagName('img')[0].width + 'x' +
- document.getElementsByTagName('img')[0].height;
+ document.getElementsByTagName('img')[0].height + ' ' +
+ document.getElementsByTagName('img')[1].width + 'x' +
+ document.getElementsByTagName('img')[1].height + ' ' +
+ document.getElementsByTagName('img')[2].width + 'x' +
+ document.getElementsByTagName('img')[2].height;
}
</script>
<img src="resources/test.webp">
+<img src="resources/test2.webp">
+<img src="resources/test3.webp">
<div id="results"></div>
</body>
</html>
« no previous file with comments | « LayoutTests/fast/images/resources/test3.webp ('k') | LayoutTests/fast/images/webp-image-decoding-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698