diff options
Diffstat (limited to 'WebCore/css/CSSImportRule.cpp')
-rw-r--r-- | WebCore/css/CSSImportRule.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/css/CSSImportRule.cpp b/WebCore/css/CSSImportRule.cpp index 42d038f..50e60f4 100644 --- a/WebCore/css/CSSImportRule.cpp +++ b/WebCore/css/CSSImportRule.cpp @@ -123,4 +123,10 @@ String CSSImportRule::cssText() const return result; } +void CSSImportRule::addSubresourceStyleURLs(ListHashSet<KURL>& urls) +{ + if (m_styleSheet) + addSubresourceURL(urls, m_styleSheet->baseURL()); +} + } // namespace WebCore |