diff options
Diffstat (limited to 'WebCore/css/CSSReflectValue.cpp')
-rw-r--r-- | WebCore/css/CSSReflectValue.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/css/CSSReflectValue.cpp b/WebCore/css/CSSReflectValue.cpp index 40a8374..a8ca59e 100644 --- a/WebCore/css/CSSReflectValue.cpp +++ b/WebCore/css/CSSReflectValue.cpp @@ -59,4 +59,10 @@ String CSSReflectValue::cssText() const return result; } +void CSSReflectValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet) +{ + if (m_mask) + m_mask->addSubresourceStyleURLs(urls, styleSheet); +} + } // namespace WebCore |