diff options
author | Nicolas Roard <nicolasroard@google.com> | 2011-03-23 16:01:27 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-03-23 16:01:27 -0700 |
commit | 3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17 (patch) | |
tree | 4d6a59ee39c541a699661cafc0ea9e95d92e61d9 | |
parent | 6fd1c35298bb73147bb585e01b86d5b7c1c8f640 (diff) | |
parent | 0cdc129636d794dec2649b50a470e03f727258f9 (diff) | |
download | external_webkit-3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17.zip external_webkit-3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17.tar.gz external_webkit-3c1bcdb44e7bd2272e7ba02da9e1b7422da7fb17.tar.bz2 |
am 0cdc1296: Fix the repainting problems with overflow-scroll div elements
* commit '0cdc129636d794dec2649b50a470e03f727258f9':
Fix the repainting problems with overflow-scroll div elements
-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. |