| Index: Source/core/css/CSSValue.cpp
|
| diff --git a/Source/core/css/CSSValue.cpp b/Source/core/css/CSSValue.cpp
|
| index c24b1c828552aacba6e4db8c0e84e78b73f65278..1c7fbd839061016f0456c026cc26538e05532317 100644
|
| --- a/Source/core/css/CSSValue.cpp
|
| +++ b/Source/core/css/CSSValue.cpp
|
| @@ -69,19 +69,6 @@ bool CSSValue::isImplicitInitialValue() const
|
| return m_classType == InitialClass && toCSSInitialValue(this)->isImplicit();
|
| }
|
|
|
| -CSSValue::Type CSSValue::cssValueType() const
|
| -{
|
| - if (isInheritedValue())
|
| - return CSS_INHERIT;
|
| - if (isPrimitiveValue())
|
| - return CSS_PRIMITIVE_VALUE;
|
| - if (isValueList())
|
| - return CSS_VALUE_LIST;
|
| - if (isInitialValue())
|
| - return CSS_INITIAL;
|
| - return CSS_CUSTOM;
|
| -}
|
| -
|
| bool CSSValue::hasFailedOrCanceledSubresources() const
|
| {
|
| if (isValueList())
|
|
|