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

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

Issue 1836293004: Rename YUV JPEG image decoding layout test (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
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
deleted file mode 100644
index c9583a11788020bb5eb31ad6c7ddc342c5256c48..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/jpeg-ycbcr-vuv-image-decoding.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <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