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

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

Issue 1225553002: CSSValue Immediates: Make CSSPrimitiveValue a container (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cssvalue_patch_1
Patch Set: Rebase Created 5 years, 5 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 | « Source/core/css/Rect.h ('k') | Source/core/css/StylePropertySerializer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/RuleFeature.cpp
diff --git a/Source/core/css/RuleFeature.cpp b/Source/core/css/RuleFeature.cpp
index 25087c5dac9b421c40f0168186eca47ab5b95bde..a53d9f3850c16d019ef7afbc94b60728caa95b7a 100644
--- a/Source/core/css/RuleFeature.cpp
+++ b/Source/core/css/RuleFeature.cpp
@@ -313,7 +313,7 @@ void RuleFeatureSet::updateInvalidationSetsForContentAttribute(const RuleData& r
for (auto& item : toCSSValueList(contentValue)) {
if (!item.isPrimitiveValue())
continue;
- CSSPrimitiveValue& primitiveItem = toCSSPrimitiveValue(item);
+ CSSPrimitiveValue primitiveItem = toCSSPrimitiveValue(item);
if (!primitiveItem.isAttr())
continue;
ensureAttributeInvalidationSet(AtomicString(primitiveItem.getStringValue()));
« no previous file with comments | « Source/core/css/Rect.h ('k') | Source/core/css/StylePropertySerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698