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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cue-serialize.html

Issue 1574323003: Split compound selector after consume finished. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@upload-base
Patch Set: Removed obsolete serialization hack and fixed unit tests. 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/cue-serialize.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/cue-serialize.html b/third_party/WebKit/LayoutTests/fast/css/cue-serialize.html
index 9be37a6b0ea4fe5a42fd06a08049d5a553e9b8b5..a93e83fe848ad2eb02ddf805435c1b9a69c98914 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cue-serialize.html
+++ b/third_party/WebKit/LayoutTests/fast/css/cue-serialize.html
@@ -11,7 +11,7 @@ description("Check serialization of ::cue and ::cue()");
var rules = document.styleSheets[0].cssRules;
shouldBe("rules.length", "3");
-shouldBe("rules[0].selectorText", "'*::cue'");
-shouldBe("rules[1].selectorText", "'*::cue(c)'");
-shouldBe("rules[2].selectorText", "'*::cue(c,.class,#id:past,i:future)'");
+shouldBe("rules[0].selectorText", "'::cue'");
+shouldBe("rules[1].selectorText", "'::cue(c)'");
+shouldBe("rules[2].selectorText", "'::cue(c,.class,#id:past,i:future)'");
</script>

Powered by Google App Engine
This is Rietveld 408576698