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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp

Issue 2089593002: Add expansion of shorthands with custom properties to longhands using a pending substition value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix serialization and temporary property value caching. Add some additional tests. Created 4 years, 6 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/resolver/StyleResolverState.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
index 6fc6c070d179659be1265f482642ca16d1119922..43bc7c68aa71fa66f36efe9d151e39fa99ebee79 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
@@ -86,4 +86,14 @@ StylePropertySet* StyleResolverState::customPropertySetForApplyAtRule(const Stri
return m_customPropertySetsForApplyAtRule.get(string);
}
+HeapHashMap<CSSPropertyID, Member<const CSSValue>>& StyleResolverState::parsedPropertiesForPendingSubstitution(const CSSValue& psv)
Timothy Loh 2016/06/27 04:19:10 no abbreviations in blink :)
Andy Mutton 2016/06/28 03:18:51 Done.
+{
+ HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = m_parsedPropertiesForPendingSubstitution.get(&psv);
+ if (!map) {
+ map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>;
+ m_parsedPropertiesForPendingSubstitution.set(&psv, map);
+ }
+ return *map;
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698