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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/images/jpeg-yuv-image-decoding.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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 <head>
4 <!-- Use a <meta> viewport, refer to http://crbug.com/598949 -->
5 <meta name="viewport" content="width=device-width, minimum-scale=1.0">
6 <style> img { margin: 5px; } </style>
7 </head>
8
9 <img src="resources/ycbcr-420-fast-int-progressive.jpg" title="ycbcr-420-fast-in t-progressive.jpg">
10 <img src="resources/ycbcr-420-float-progressive.jpg" title="ycbcr-420-float-prog ressive.jpg">
11 <img src="resources/ycbcr-420-float.jpg" title="ycbcr-420-float.jpg">
12 <img src="resources/ycbcr-420-progressive-smooth.jpg" title="ycbcr-420-progressi ve-smooth.jpg">
13 <img src="resources/ycbcr-420-progressive.jpg" title="ycbcr-420-progressive.jpg" >
14 <img src="resources/ycbcr-420.jpg" title="ycbcr-420.jpg">
15 <img src="resources/ycbcr-422-float.jpg" title="ycbcr-422-float.jpg">
16 <img src="resources/ycbcr-422.jpg" title="ycbcr-422.jpg">
17 <img src="resources/ycbcr-440-float.jpg" title="ycbcr-440-float.jpg">
18 <img src="resources/ycbcr-440.jpg" title="ycbcr-440.jpg">
19 <img src="resources/ycbcr-444-float.jpg" title="ycbcr-444-float.jpg">
20 <img src="resources/ycbcr-444.jpg" title="ycbcr-444.jpg">
21
22 <pre id="results"></pre>
23
24 <script>
25 if (window.testRunner) {
26 testRunner.dumpAsTextWithPixelResults(); // This test must include the image r enderings.
27 testRunner.waitUntilDone();
28 }
29
30 window.onload = function() {
31 var images = document.getElementsByTagName('img');
32
33 function detailsForImage(image) {
34 return image.width + 'x' + image.height + ' ' + image.title;
35 }
36
37 for (var i = 0; i < images.length; ++i)
38 results.innerHTML += detailsForImage(images[i]) + '\n';
39
40 if (window.testRunner)
41 testRunner.notifyDone();
42 };
43 </script>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698