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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/css-set-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-set-selector-text.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text.html b/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text.html
index a5d3f3abbb90112929f6a92f89798e682a3a4f40..8df5518df4eba2ede48f2d45459bba03433ef709 100644
--- a/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text.html
+++ b/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text.html
@@ -60,9 +60,9 @@ testSelectorRoundTrip('[a*="b"]');
debug('');
-testSelectorRoundTrip('*|a');
+shouldBe("setThenReadSelectorText('*|a')", "'a'");
testSelectorRoundTrip('n|a');
-testSelectorRoundTrip('*|*');
+shouldBe("setThenReadSelectorText('*|*')", "'*'");
testSelectorRoundTrip('n|*');
testSelectorRoundTrip('[*|a]');
testSelectorRoundTrip('[n|a]');

Powered by Google App Engine
This is Rietveld 408576698