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

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

Issue 1988013003: Move generic shorthand serialization checks out of specific routines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shorthand1
Patch Set: actually fix test Created 4 years, 7 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/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
index 640f6004e360691b8e92eeb05c2ac63823b467ea..1906388665ca9dc815390670ca49b805de519f98 100644
--- a/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
@@ -5,12 +5,12 @@ 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-attachment: initial; background-color: initial !important; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial; }"
+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-attachment: initial; background-color: black; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: 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-attachment: inherit; background-color: black; background-size: inherit; background-origin: inherit; background-clip: inherit; background-position: inherit; background-repeat: inherit; }"
-PASS test('.test { background: none; background-repeat: repeat-x !important;}') is ".test { background-image: none; background-attachment: initial; background-color: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: repeat-x !important; }"
+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%; }"

Powered by Google App Engine
This is Rietveld 408576698