| Index: third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValueList.cpp b/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| index e443ae39d55df4933fbadf24f8774d13d415af94..2e768e0d70a51bfd2295c321a41e60655a36601a 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| @@ -124,6 +124,19 @@ bool CSSValueList::hasFailedOrCanceledSubresources() const {
|
| return false;
|
| }
|
|
|
| +bool CSSValueList::mayContainUrl() const {
|
| + for (const auto& value : m_values) {
|
| + if (value->mayContainUrl())
|
| + return true;
|
| + }
|
| + return false;
|
| +}
|
| +
|
| +void CSSValueList::reResolveUrl(const Document& document) const {
|
| + for (const auto& value : m_values)
|
| + value->reResolveUrl(document);
|
| +}
|
| +
|
| DEFINE_TRACE_AFTER_DISPATCH(CSSValueList) {
|
| visitor->trace(m_values);
|
| CSSValue::traceAfterDispatch(visitor);
|
|
|