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

Side by Side 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, 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
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <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
5 <style> img { margin: 5px; } </style>
6 </head>
7
8 <img src="resources/ycbcr-420-fast-int-progressive.jpg" title="ycbcr-420-fast-in t-progressive.jpg">
9 <img src="resources/ycbcr-420-float-progressive.jpg" title="ycbcr-420-float-prog ressive.jpg">
10 <img src="resources/ycbcr-420-float.jpg" title="ycbcr-420-float.jpg">
11 <img src="resources/ycbcr-420-progressive-smooth.jpg" title="ycbcr-420-progressi ve-smooth.jpg">
12 <img src="resources/ycbcr-420-progressive.jpg" title="ycbcr-420-progressive.jpg" >
13 <img src="resources/ycbcr-420.jpg" title="ycbcr-420.jpg">
14 <img src="resources/ycbcr-422-float.jpg" title="ycbcr-422-float.jpg">
15 <img src="resources/ycbcr-422.jpg" title="ycbcr-422.jpg">
16 <img src="resources/ycbcr-440-float.jpg" title="ycbcr-440-float.jpg">
17 <img src="resources/ycbcr-440.jpg" title="ycbcr-440.jpg">
18 <img src="resources/ycbcr-444-float.jpg" title="ycbcr-444-float.jpg">
19 <img src="resources/ycbcr-444.jpg" title="ycbcr-444.jpg">
20
21 <pre id="results"></pre>
22
23 <script>
24 if (window.testRunner) {
25 testRunner.dumpAsTextWithPixelResults(); // This test must include the image r enderings.
26 testRunner.waitUntilDone();
27 }
28
29 window.onload = function() {
30 var images = document.getElementsByTagName('img');
31
32 function detailsForImage(image) {
33 return image.width + 'x' + image.height + ' ' + image.title;
34 }
35
36 for (var i = 0; i < images.length; ++i)
37 results.innerHTML += detailsForImage(images[i]) + '\n';
38
39 if (window.testRunner)
40 testRunner.notifyDone();
41 };
42 </script>
43 </html>
OLDNEW
« 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