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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/images/jpeg-yuv-image-decoding.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/jpeg-yuv-image-decoding.html b/third_party/WebKit/LayoutTests/fast/images/jpeg-yuv-image-decoding.html
deleted file mode 100644
index 07dcab96239a1e2de4d3e3ff40f875aa813af72d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/jpeg-yuv-image-decoding.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <!-- Use a <meta> viewport, refer to http://crbug.com/598949 -->
- <meta name="viewport" content="width=device-width, minimum-scale=1.0">
- <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>

Powered by Google App Engine
This is Rietveld 408576698