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/RuleFeature.cpp

Issue 1424783003: CSS: Use UINT_MAX for ~ sibling invalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/css/RuleFeature.cpp
diff --git a/third_party/WebKit/Source/core/css/RuleFeature.cpp b/third_party/WebKit/Source/core/css/RuleFeature.cpp
index 6182d564fb1f3638708d9bd85f7f0a1a42a708b3..a9e3b6a2b3e7359f49baf14755563356930353b5 100644
--- a/third_party/WebKit/Source/core/css/RuleFeature.cpp
+++ b/third_party/WebKit/Source/core/css/RuleFeature.cpp
@@ -487,13 +487,13 @@ void RuleFeatureSet::addFeaturesToInvalidationSets(const CSSSelector* selector,
}
if (siblingFeatures) {
- if (siblingFeatures->maxDirectAdjacentSelectors == std::numeric_limits<unsigned>::max())
+ if (siblingFeatures->maxDirectAdjacentSelectors == UINT_MAX)
continue;
if (current->relation() == CSSSelector::DirectAdjacent)
siblingFeatures->maxDirectAdjacentSelectors++;
else
- siblingFeatures->maxDirectAdjacentSelectors = std::numeric_limits<unsigned>::max();
+ siblingFeatures->maxDirectAdjacentSelectors = UINT_MAX;
continue;
}
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.h ('k') | third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698