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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp

Issue 1317533002: Sibling invalidation sets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Oilpan 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
Index: third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp b/third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp
index 614028bd91e5040f81e8fbdc0132a4db10aa07a2..ddb5c32c80e6dd279c7f2e801018db104858a436 100644
--- a/third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/SelectRuleFeatureSet.cpp
@@ -42,7 +42,7 @@ void SelectRuleFeatureSet::collectFeaturesFromSelectorList(const CSSSelectorList
{
for (const CSSSelector* selector = list.first(); selector; selector = CSSSelectorList::next(*selector)) {
for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
- if (invalidationSetForSelector(*component))
+ if (invalidationSetForSelector(*component, InvalidateDescendants))
continue;
if (component->selectorList())

Powered by Google App Engine
This is Rietveld 408576698