diff options
author | Nicolas Roard <nicolasroard@google.com> | 2011-03-23 16:08:03 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-03-23 16:08:03 -0700 |
commit | 9c3a8828b97457faefa3936b1f2e37d4a2ce5b53 (patch) | |
tree | 5d663239ea03f25e2953bed49efb15dfda848a55 /WebCore/platform/graphics/android | |
parent | 02e4dc4c0f1f9a35d05f3ed6de321fcc90473f44 (diff) | |
parent | 3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17 (diff) | |
download | external_webkit-9c3a8828b97457faefa3936b1f2e37d4a2ce5b53.zip external_webkit-9c3a8828b97457faefa3936b1f2e37d4a2ce5b53.tar.gz external_webkit-9c3a8828b97457faefa3936b1f2e37d4a2ce5b53.tar.bz2 |
am 3c1bcdb4: am 0cdc1296: Fix the repainting problems with overflow-scroll div elements
* commit '3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17':
Fix the repainting problems with overflow-scroll div elements
Diffstat (limited to 'WebCore/platform/graphics/android')
-rw-r--r-- | WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp b/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp index 72aefa4..96cfd3d 100644 --- a/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp +++ b/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp @@ -595,6 +595,7 @@ bool GraphicsLayerAndroid::repaint() m_foregroundLayer->setPosition(-x, -y); // Set the scrollable bounds of the layer. m_foregroundLayer->setScrollLimits(-x, -y, m_size.width(), m_size.height()); + m_foregroundLayer->needsRepaint(); } else { // If there is no contents clip, we can draw everything into one // picture. |