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

Unified Diff: Source/core/css/CSSValue.h

Issue 1069313002: Animation: FilterStyleInterpolation for animating filter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: ASSERT isValueList || CSSValueNone Created 5 years, 8 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/core.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSValue.h
diff --git a/Source/core/css/CSSValue.h b/Source/core/css/CSSValue.h
index 4bcec7b330e7ba54c26032085ced6b6eeb54f111..7f91ab9bd304b8d9006fd713e9d93d37221dc2fb 100644
--- a/Source/core/css/CSSValue.h
+++ b/Source/core/css/CSSValue.h
@@ -77,8 +77,9 @@ public:
bool isImageValue() const { return m_classType == ImageClass; }
bool isImplicitInitialValue() const;
bool isInheritedValue() const { return m_classType == InheritedClass; }
- bool isUnsetValue() const { return m_classType == UnsetClass; }
bool isInitialValue() const { return m_classType == InitialClass; }
+ bool isUnsetValue() const { return m_classType == UnsetClass; }
+ bool isCSSWideKeyword() const { return m_classType >= InheritedClass && m_classType <= UnsetClass; }
bool isLinearGradientValue() const { return m_classType == LinearGradientClass; }
bool isPathValue() const { return m_classType == PathClass; }
bool isRadialGradientValue() const { return m_classType == RadialGradientClass; }
« no previous file with comments | « Source/core/core.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698