Chromium Code Reviews| 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> |