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

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

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.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/css-selector-text.html b/third_party/WebKit/LayoutTests/fast/css/css-selector-text.html
index 5478107d471e1408ba6006b1e0b4add2078d6a48..20bdcedf784ef18f163af21015b9e88f1d6cc600 100644
--- a/third_party/WebKit/LayoutTests/fast/css/css-selector-text.html
+++ b/third_party/WebKit/LayoutTests/fast/css/css-selector-text.html
@@ -44,9 +44,9 @@ testSelectorRoundTrip('[a*="b"]');
debug('');
-testSelectorRoundTrip('*|a');
+shouldBe("parseThenSerializeRule('*|a { }')", "'a { }'");
testSelectorRoundTrip('n|a');
-testSelectorRoundTrip('*|*');
+shouldBe("parseThenSerializeRule('*|* { }')", "'* { }'");
testSelectorRoundTrip('n|*');
testSelectorRoundTrip('[*|a]');
testSelectorRoundTrip('[n|a]');

Powered by Google App Engine
This is Rietveld 408576698