| Index: Source/core/css/CSSValueList.cpp
|
| diff --git a/Source/core/css/CSSValueList.cpp b/Source/core/css/CSSValueList.cpp
|
| index eb181f646f014e4a1f3cb06a12d654942f0f7b35..08d4e165620f856d4400f328fdae8dc393bbd5f6 100644
|
| --- a/Source/core/css/CSSValueList.cpp
|
| +++ b/Source/core/css/CSSValueList.cpp
|
| @@ -116,15 +116,6 @@ bool CSSValueList::equals(const CSSValueList& other) const
|
| return m_valueListSeparator == other.m_valueListSeparator && compareCSSValueVector(m_values, other.m_values);
|
| }
|
|
|
| -bool CSSValueList::equals(const CSSValue& other) const
|
| -{
|
| - if (m_values.size() != 1)
|
| - return false;
|
| -
|
| - const RefPtrWillBeMember<CSSValue>& value = m_values[0];
|
| - return value && value->equals(other);
|
| -}
|
| -
|
| bool CSSValueList::hasFailedOrCanceledSubresources() const
|
| {
|
| for (unsigned i = 0; i < m_values.size(); ++i) {
|
|
|