From b1e9e47fa11f608ae16bc07f97a2acf95bf80272 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 1 Jun 2012 10:36:58 +0200 Subject: Imported WebKit commit 499c84c99aa98e9870fa7eaa57db476c6d160d46 (http://svn.webkit.org/repository/webkit/trunk@119200) Weekly update :). Particularly relevant changes for Qt are the use of the WebCore image decoders and direct usage of libpng/libjpeg if available in the system. --- Source/WebCore/css/CSSValue.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Source/WebCore/css/CSSValue.cpp') diff --git a/Source/WebCore/css/CSSValue.cpp b/Source/WebCore/css/CSSValue.cpp index 1151959e0..f568cc5f4 100644 --- a/Source/WebCore/css/CSSValue.cpp +++ b/Source/WebCore/css/CSSValue.cpp @@ -99,19 +99,19 @@ CSSValue::Type CSSValue::cssValueType() const return CSS_CUSTOM; } -void CSSValue::addSubresourceStyleURLs(ListHashSet& urls, const StyleSheetContents* styleSheet) +void CSSValue::addSubresourceStyleURLs(ListHashSet& urls, const StyleSheetContents* styleSheet) const { // This should get called for internal instances only. ASSERT(!isCSSOMSafe()); if (isPrimitiveValue()) - static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); + static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); else if (isValueList()) - static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); + static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); else if (classType() == FontFaceSrcClass) - static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); + static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); else if (classType() == ReflectClass) - static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); + static_cast(this)->addSubresourceStyleURLs(urls, styleSheet); } String CSSValue::cssText() const -- cgit v1.2.1