Index: Source/core/css/CSSComputedStyleDeclaration.cpp |
diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp |
index b3cf2ba0f2a05e486730523a4be5746ce0315951..21292957e729a63ee0a74ce7a2f1434b975c96ad 100644 |
--- a/Source/core/css/CSSComputedStyleDeclaration.cpp |
+++ b/Source/core/css/CSSComputedStyleDeclaration.cpp |
@@ -45,13 +45,13 @@ |
#include "core/css/CSSPrimitiveValueMappings.h" |
#include "core/css/CSSReflectValue.h" |
#include "core/css/CSSSelector.h" |
+#include "core/css/CSSShadowValue.h" |
#include "core/css/CSSTimingFunctionValue.h" |
#include "core/css/CSSTransformValue.h" |
#include "core/css/CSSValueList.h" |
#include "core/css/CSSValuePool.h" |
#include "core/css/Pair.h" |
#include "core/css/Rect.h" |
-#include "core/css/ShadowValue.h" |
#include "core/css/StylePropertySet.h" |
#include "core/css/resolver/StyleResolver.h" |
#include "core/dom/Document.h" |
@@ -1325,7 +1325,7 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadow(const ShadowDat |
RefPtr<CSSPrimitiveValue> spread = propertyID == CSSPropertyTextShadow ? PassRefPtr<CSSPrimitiveValue>() : zoomAdjustedPixelValue(s->spread(), style); |
RefPtr<CSSPrimitiveValue> style = propertyID == CSSPropertyTextShadow || s->style() == Normal ? PassRefPtr<CSSPrimitiveValue>() : cssValuePool().createIdentifierValue(CSSValueInset); |
RefPtr<CSSPrimitiveValue> color = cssValuePool().createColorValue(s->color().rgb()); |
- list->prepend(ShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release())); |
+ list->prepend(CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release())); |
} |
return list.release(); |
} |