Index: Source/platform/graphics/paint/ClipDisplayItem.cpp |
diff --git a/Source/platform/graphics/paint/ClipDisplayItem.cpp b/Source/platform/graphics/paint/ClipDisplayItem.cpp |
index 6fb17807e84c014401196a78faf44ba83e4f8983..29abce40ce8943aab286c2583b2e05cddea1bd40 100644 |
--- a/Source/platform/graphics/paint/ClipDisplayItem.cpp |
+++ b/Source/platform/graphics/paint/ClipDisplayItem.cpp |
@@ -13,9 +13,9 @@ namespace blink { |
void ClipDisplayItem::replay(GraphicsContext* context) |
{ |
context->save(); |
- context->clip(m_clipRect); |
+ context->clipRect(m_clipRect, NotAntiAliased, m_operation); |
for (RoundedRect roundedRect : m_roundedRectClips) |
- context->clipRoundedRect(roundedRect); |
+ context->clipRoundedRect(roundedRect, m_operation); |
} |
void EndClipDisplayItem::replay(GraphicsContext* context) |