| Index: Source/core/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/Source/core/platform/graphics/GraphicsLayer.cpp b/Source/core/platform/graphics/GraphicsLayer.cpp
|
| index 1def9e38f3e2bc3f479a46915bd72e9fda685ccd..af9feca0f5615740be36f7ac74e3293f25327ae0 100644
|
| --- a/Source/core/platform/graphics/GraphicsLayer.cpp
|
| +++ b/Source/core/platform/graphics/GraphicsLayer.cpp
|
| @@ -1275,7 +1275,7 @@ static bool copyWebCoreFilterOperationsToWebFilterOperations(const FilterOperati
|
| }
|
| case FilterOperation::DROP_SHADOW: {
|
| const DropShadowFilterOperation& dropShadowOp = *static_cast<const DropShadowFilterOperation*>(&op);
|
| - webFilters.append(WebFilterOperation::createDropShadowFilter(WebPoint(dropShadowOp.x(), dropShadowOp.y()), dropShadowOp.stdDeviation(), dropShadowOp.color().rgb()));
|
| + webFilters.append(WebFilterOperation::createDropShadowFilter(dropShadowOp.x(), dropShadowOp.y(), dropShadowOp.stdDeviation(), dropShadowOp.color().rgb()));
|
| break;
|
| }
|
| case FilterOperation::CUSTOM:
|
|
|