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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/color-profile-image-filter-all.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/color-profile-image-filter-all.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/color-profile-image-filter-all.html b/third_party/WebKit/LayoutTests/fast/images/color-profile-image-filter-all.html
deleted file mode 100644
index 0e591a35fb06c98d65f934d61d0eaa74ab87a4c2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/color-profile-image-filter-all.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html>
-<html>
-<style>
-html {
- width: 100vw;
- height: 100vh;
-}
-
-body {
- text-transform: uppercase;
- text-align: center;
- font-family: sans-serif;
- letter-spacing: 0.1em;
- font-size: 12pt;
- padding-top: 12px;
-}
-
-img {
- width: 170px;
-}
-
-#grayscale { -webkit-filter: grayscale(1) }
-
-#none { -webkit-filter: none }
-
-#brightness { -webkit-filter: brightness(.6) }
-
-#saturation { -webkit-filter: saturate(4) }
-
-#sepia { -webkit-filter: sepia(1) }
-
-#blur { -webkit-filter: blur(2px) }
-
-#opacity { -webkit-filter: opacity(.8) }
-
-#blurhue { -webkit-filter: blur(3px) saturate(3) }
-
-div {
- display: inline-block;
- padding: 8px 8px;
-}
-</style>
-
-<body>
- <!-- The blue sector of the images should be at 12 o'clock -->
- <div>
- <img id="grayscale" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Grayscale</p>
- </div>
- <div>
- <img id="none" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>None</p>
- </div>
- <div>
- <img id="brightness" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Brightness</p>
- </div>
- <div>
- <img id="saturation" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Saturation</p>
- </div>
- <div>
- <img id="sepia" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Sepia</p>
- </div>
- <div>
- <img id="blur" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Blur</p>
- </div>
- <div>
- <img id="opacity" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Opacity</p>
- </div>
- <div>
- <img id="blurhue" src="resources/red-at-12-oclock-with-color-profile.jpg" /><p>Blur+Hue</p>
- </div>
-</body>
-
-<script>
-window.onload = function() {
- if (window.testRunner)
- setTimeout(function() { testRunner.setColorProfile('colorSpin', done) }, 100);
-};
-
-function done() {
- setTimeout(function() { testRunner.notifyDone() }, 0);
-}
-
-if (window.testRunner) {
- testRunner.dumpAsTextWithPixelResults();
- testRunner.waitUntilDone();
-}
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698