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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt

Issue 2228733005: Convert fast/css/background-serialize.html test to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed review comments Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css/background-serialize.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt b/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
deleted file mode 100644
index 1906388665ca9dc815390670ca49b805de519f98..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-Test background properties obtained by using cssText when the properties are set by using style element's textContent.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS test('.test { background: none; }') is ".test { background: none; }"
-PASS test('.test { background: none; background-color: black;}') is ".test { background: none black; }"
-PASS test('.test { background: none; background-color: initial !important;}') is ".test { background-image: none; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial !important; }"
-PASS test('.test { background: initial; }') is ".test { background: initial; }"
-PASS test('.test { background: initial; background-color: black; }') is ".test { background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: black; }"
-PASS test('.test { background: inherit; }') is ".test { background: inherit; }"
-PASS test('.test { background: inherit; background-color: black; }') is ".test { background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: black; }"
-PASS test('.test { background: none; background-repeat: repeat-x !important;}') is ".test { background-image: none; background-position: initial; background-size: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-repeat: repeat-x !important; }"
-PASS test('.test { background: none; background-repeat: repeat-x;}') is ".test { background: none repeat-x; }"
-PASS test('.test { background: none; background-position-x: 0%;}') is ".test { background: none 0%; }"
-PASS test('.test { background: none; background-position: 20% 80%;}') is ".test { background: none 20% 80%; }"
-PASS test('.test { background-position-x: 5%; }') is ".test { background-position-x: 5%; }"
-PASS test('.test { background-position-y: 5%; }') is ".test { background-position-y: 5%; }"
-PASS test('.test { background-position-x: 5%; background-position-y: 10%; }') is ".test { background-position: 5% 10%; }"
-PASS test('.test { background-position-x: 5%; background-position-y: 10% !important; }') is ".test { background-position-x: 5%; background-position-y: 10% !important; }"
-PASS test('.test { background: url(dummy://test.png); }') is ".test { background: url(\"dummy://test.png\"); }"
-PASS test('.test { background: url(dummy://test.png); background-color: black; }') is ".test { background: url(\"dummy://test.png\") black; }"
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css/background-serialize.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698