summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorNicolas Roard <nicolasroard@google.com>2012-05-29 17:10:12 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-05-29 17:10:12 -0700
commitcff29754c2515b04a1241a8acb205db466d6a4e3 (patch)
treef9d675dc58e5d01c47092a2e45cc492d01a28556 /Source
parent2b9e710f9c95f93eba3e3fca22f32f1784b197c3 (diff)
parent07e81ac8f155f768bd769b95efd758c6acb9d6a6 (diff)
downloadexternal_webkit-cff29754c2515b04a1241a8acb205db466d6a4e3.zip
external_webkit-cff29754c2515b04a1241a8acb205db466d6a4e3.tar.gz
external_webkit-cff29754c2515b04a1241a8acb205db466d6a4e3.tar.bz2
am 07e81ac8: am 86c18a99: Fix for wrong positioning
* commit '07e81ac8f155f768bd769b95efd758c6acb9d6a6': Fix for wrong positioning
Diffstat (limited to 'Source')
-rw-r--r--Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
index e34125c..779dba5 100644
--- a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
+++ b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
@@ -274,7 +274,7 @@ void GraphicsLayerAndroid::updatePositionedLayers()
SkRect viewRect;
viewRect.set(paintingOffsetX, paintingOffsetY, paintingOffsetX + w, paintingOffsetY + h);
- IntPoint renderLayerPos(renderLayer->x(), renderLayer->y());
+ IntPoint renderLayerPos(position().x(), position().y());
FixedPositioning* fixedPosition = m_contentLayer->fixedPosition();
if (!fixedPosition) {