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

Unified Diff: Source/core/css/RuleSetTest.cpp

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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: Source/core/css/RuleSetTest.cpp
diff --git a/Source/core/css/RuleSetTest.cpp b/Source/core/css/RuleSetTest.cpp
index e9b70df4b3a214603d70ea31681689d8f0bb0ab8..414bfe83317e4f0a80591a5631d1d3539ad7489b 100644
--- a/Source/core/css/RuleSetTest.cpp
+++ b/Source/core/css/RuleSetTest.cpp
@@ -47,6 +47,17 @@ TEST(RuleSetTest, findBestRuleSetAndAdd_CustomPseudoElements)
ASSERT_EQ(str, rules->at(0).selector().value());
}
+TEST(RuleSetTest, findBestRuleSetAndAdd_MarkerElementNotAllowedInNonUAStyle)
+{
+ CSSTestHelper helper;
+
+ helper.tryAddCSSRules("li::marker { }");
+ RuleSet& ruleSet = helper.ruleSet();
+ AtomicString str("li");
+ const TerminatedArray<RuleData>* rules = ruleSet.tagRules(str);
+ ASSERT_EQ(0u, rules->size());
+}
Julien - ping for review 2014/12/05 19:44:03 Only one unit test?
+
TEST(RuleSetTest, findBestRuleSetAndAdd_Id)
{
CSSTestHelper helper;

Powered by Google App Engine
This is Rietveld 408576698