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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/color-profile-border-image-source.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-border-image-source.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/color-profile-border-image-source.html b/third_party/WebKit/LayoutTests/fast/images/color-profile-border-image-source.html
deleted file mode 100644
index 1d673bf9a2990926f8581842615357f9d28fba20..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/color-profile-border-image-source.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- div {
- border-width: 21px 30px 30px 21px;
- width: 75px;
- height: 75px;
- margin: 10px;
- display: inline-block;
- border-image-source: url("resources/border-image-srgb-color-profile.png") !important
- }
-
- div.rr {
- -webkit-border-image: none 21 30 30 21 repeat repeat;
- border-style: solid;
- }
-
- div.rs {
- -webkit-border-image: none 21 30 30 21 repeat stretch;
- border-style: solid;
- }
-
- div.sr {
- -webkit-border-image: none 21 30 30 21 stretch repeat;
- border-style: solid;
- }
-
- div.ss {
- -webkit-border-image: none 21 30 30 21 stretch stretch;
- border-style: solid;
- }
-</style>
-</head>
-
-<body>
- <div class="rr"></div>
- <div class="rs"></div>
- <br>
- <div class="sr"></div>
- <div class="ss"></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