| Index: third_party/WebKit/Source/core/css/CSSValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValue.h b/third_party/WebKit/Source/core/css/CSSValue.h
|
| index 8083104b0cb8de30ff8a92810027a013680217aa..8c211552f10c83eaaba364d446a1e9bce33fe6a3 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValue.h
|
| @@ -85,6 +85,9 @@ class CORE_EXPORT CSSValue : public GarbageCollectedFinalized<CSSValue> {
|
| bool isFontFeatureValue() const { return m_classType == FontFeatureClass; }
|
| bool isFontFamilyValue() const { return m_classType == FontFamilyClass; }
|
| bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; }
|
| + bool isFontVariationValue() const {
|
| + return m_classType == FontVariationClass;
|
| + }
|
| bool isFunctionValue() const { return m_classType == FunctionClass; }
|
| bool isCustomIdentValue() const { return m_classType == CustomIdentClass; }
|
| bool isImageGeneratorValue() const {
|
| @@ -197,6 +200,7 @@ class CORE_EXPORT CSSValue : public GarbageCollectedFinalized<CSSValue> {
|
| FontFeatureClass,
|
| FontFaceSrcClass,
|
| FontFamilyClass,
|
| + FontVariationClass,
|
|
|
| InheritedClass,
|
| InitialClass,
|
|
|