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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html

Issue 1840303003: Add <meta> tag YUV JPEG image decoding layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html b/third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html
new file mode 100644
index 0000000000000000000000000000000000000000..c9583a11788020bb5eb31ad6c7ddc342c5256c48
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0">
msarett1 2016/03/30 13:07:59 Can you add a comment here mentioning that "viewpo
+ <style> img { margin: 5px; } </style>
+</head>
+
+<img src="resources/ycbcr-420-fast-int-progressive.jpg" title="ycbcr-420-fast-int-progressive.jpg">
+<img src="resources/ycbcr-420-float-progressive.jpg" title="ycbcr-420-float-progressive.jpg">
+<img src="resources/ycbcr-420-float.jpg" title="ycbcr-420-float.jpg">
+<img src="resources/ycbcr-420-progressive-smooth.jpg" title="ycbcr-420-progressive-smooth.jpg">
+<img src="resources/ycbcr-420-progressive.jpg" title="ycbcr-420-progressive.jpg">
+<img src="resources/ycbcr-420.jpg" title="ycbcr-420.jpg">
+<img src="resources/ycbcr-422-float.jpg" title="ycbcr-422-float.jpg">
+<img src="resources/ycbcr-422.jpg" title="ycbcr-422.jpg">
+<img src="resources/ycbcr-440-float.jpg" title="ycbcr-440-float.jpg">
+<img src="resources/ycbcr-440.jpg" title="ycbcr-440.jpg">
+<img src="resources/ycbcr-444-float.jpg" title="ycbcr-444-float.jpg">
+<img src="resources/ycbcr-444.jpg" title="ycbcr-444.jpg">
+
+<pre id="results"></pre>
+
+<script>
+if (window.testRunner) {
+ testRunner.dumpAsTextWithPixelResults(); // This test must include the image renderings.
+ testRunner.waitUntilDone();
+}
+
+window.onload = function() {
+ var images = document.getElementsByTagName('img');
+
+ function detailsForImage(image) {
+ return image.width + 'x' + image.height + ' ' + image.title;
+ }
+
+ for (var i = 0; i < images.length; ++i)
+ results.innerHTML += detailsForImage(images[i]) + '\n';
+
+ if (window.testRunner)
+ testRunner.notifyDone();
+};
+</script>
+</html>
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698