Index: Source/WebCore/platform/graphics/transforms/TransformState.cpp |
=================================================================== |
--- Source/WebCore/platform/graphics/transforms/TransformState.cpp (revision 139619) |
+++ Source/WebCore/platform/graphics/transforms/TransformState.cpp (working copy) |
@@ -111,6 +111,11 @@ |
if (wasClamped) |
*wasClamped = false; |
+ if (transformFromContainer.isIntegerTranslation()) { |
+ move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate); |
+ return; |
+ } |
+ |
applyAccumulatedOffset(); |
// If we have an accumulated transform from last time, multiply in this transform |