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

Unified Diff: third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp

Issue 1418133013: CSS: Reduce style invalidation with sibling combinators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use enum Created 5 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
diff --git a/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp b/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
index f27597af8df9d71fd1c7474fa6a941555cf458cd..91f90bccb5f9ac8d10e5942ce5106aa3e7511687 100644
--- a/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
+++ b/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
@@ -101,6 +101,12 @@ public:
EXPECT_TRUE(invalidationSets[0]->invalidatesSelf());
}
+ void expectNoSelfInvalidation(InvalidationSetVector& invalidationSets)
+ {
+ EXPECT_EQ(1u, invalidationSets.size());
+ EXPECT_FALSE(invalidationSets[0]->invalidatesSelf());
+ }
+
void expectClassInvalidation(const AtomicString& className, InvalidationSetVector& invalidationSets)
{
EXPECT_EQ(1u, invalidationSets.size());
@@ -201,10 +207,11 @@ TEST_F(RuleFeatureSetTest, interleavedDescendantSibling2)
TEST_F(RuleFeatureSetTest, interleavedDescendantSibling3)
{
- updateInvalidationSets(".n .o + .p");
+ updateInvalidationSets(".m + .n .o + .p");
InvalidationLists invalidationLists;
collectInvalidationSetsForClass(invalidationLists, "n");
+ expectNoSelfInvalidation(invalidationLists.descendants);
expectClassInvalidation("p", invalidationLists.descendants);
expectNoInvalidation(invalidationLists.siblings);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698