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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/css-selector-text-expected.txt

Issue 1607873002: Serialize namespaced type/* selectors according to CSSOM spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@queryselector-no-pseudoelm-20160118
Patch Set: Rebased Created 4 years, 11 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/css-selector-text-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/css-selector-text-expected.txt b/third_party/WebKit/LayoutTests/fast/css/css-selector-text-expected.txt
index d4f460d673e5518a891446ac6e98ef69dce8b6fe..254aa5f9b52ae90d06e4a34e90c1f893fae4ec06 100644
--- a/third_party/WebKit/LayoutTests/fast/css/css-selector-text-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/css-selector-text-expected.txt
@@ -16,9 +16,9 @@ PASS parseThenSerializeRule('[a^="b"] { }') is '[a^="b"] { }'
PASS parseThenSerializeRule('[a$="b"] { }') is '[a$="b"] { }'
PASS parseThenSerializeRule('[a*="b"] { }') is '[a*="b"] { }'
-PASS parseThenSerializeRule('*|a { }') is '*|a { }'
+PASS parseThenSerializeRule('*|a { }') is 'a { }'
PASS parseThenSerializeRule('n|a { }') is 'n|a { }'
-PASS parseThenSerializeRule('*|* { }') is '*|* { }'
+PASS parseThenSerializeRule('*|* { }') is '* { }'
PASS parseThenSerializeRule('n|* { }') is 'n|* { }'
PASS parseThenSerializeRule('[*|a] { }') is '[*|a] { }'
PASS parseThenSerializeRule('[n|a] { }') is '[n|a] { }'

Powered by Google App Engine
This is Rietveld 408576698