diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp b/Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp index 9764af138..a0f7a4b0b 100644 --- a/Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp +++ b/Source/WebKit/chromium/src/WebViewBenchmarkSupportImpl.cpp @@ -59,7 +59,8 @@ void WebViewBenchmarkSupportImpl::acceleratedPaintUnclipped(PaintClient* paintCl FloatSize layerSize = layer.size(); IntRect clip(0, 0, layerSize.width(), layerSize.height()); - paintLayer(paintClient, layer, clip); + if (layer.drawsContent()) + paintLayer(paintClient, layer, clip); const Vector<GraphicsLayer*>& children = layer.children(); Vector<GraphicsLayer*>::const_iterator it; |