summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
index 2807163..25441f4 100644
--- a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
+++ b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
@@ -852,8 +852,9 @@ bool GraphicsLayerAndroid::paintContext(LayerAndroid* layer,
// TODO: add content checks (text, opacity, etc.)
picture.updatePicturesIfNeeded(this);
+ // store the newly painted content in the layer if it's not empty
PicturePileLayerContent* content = new PicturePileLayerContent(picture);
- layer->setContent(content);
+ layer->setContent(content->isEmpty() ? 0 : content);
SkSafeUnref(content);
return true;