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 6284b30302380f93d0f84389385077434595150f..422fa74b539a043dbf9e1781f2a43213fbbe2c9d 100644 |
--- a/third_party/WebKit/Source/core/css/RuleFeature.cpp |
+++ b/third_party/WebKit/Source/core/css/RuleFeature.cpp |
@@ -397,7 +397,7 @@ void RuleFeatureSet::updateInvalidationSetsForContentAttribute(const RuleData& r |
for (auto& item : toCSSValueList(*contentValue)) { |
if (!item->isFunctionValue()) |
continue; |
- CSSFunctionValue* functionValue = toCSSFunctionValue(item.get()); |
+ const CSSFunctionValue* functionValue = toCSSFunctionValue(item.get()); |
if (functionValue->functionType() != CSSValueAttr) |
continue; |
ensureAttributeInvalidationSet(AtomicString(toCSSCustomIdentValue(functionValue->item(0))->value()), InvalidateDescendants).setInvalidatesSelf(); |