| Index: Source/core/css/CSSValue.h
|
| diff --git a/Source/core/css/CSSValue.h b/Source/core/css/CSSValue.h
|
| index 4bb576a3ce74c6871cc74389c1015c1979b4b231..44186d602c828f42b55a705e1612e4aaf5903eeb 100644
|
| --- a/Source/core/css/CSSValue.h
|
| +++ b/Source/core/css/CSSValue.h
|
| @@ -67,6 +67,7 @@
|
| 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 isLinearGradientValue() const { return m_classType == LinearGradientClass; }
|
| bool isRadialGradientValue() const { return m_classType == RadialGradientClass; }
|
| @@ -121,6 +122,7 @@
|
|
|
| InheritedClass,
|
| InitialClass,
|
| + UnsetClass,
|
|
|
| ReflectClass,
|
| ShadowClass,
|
|
|