summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/WebKit/android/nav/WebView.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit/android/nav/WebView.cpp b/Source/WebKit/android/nav/WebView.cpp
index a78392b..59901ff 100644
--- a/Source/WebKit/android/nav/WebView.cpp
+++ b/Source/WebKit/android/nav/WebView.cpp
@@ -698,11 +698,6 @@ class GLDrawFunctor : Functor {
if (shouldDraw)
wvInstance->updateRectsForGL();
- if (invScreenRect.isEmpty()) {
- // NOOP operation if viewport is empty
- return 0;
- }
-
WebCore::IntRect inval;
int titlebarHeight = screenRect.height() - invScreenRect.height();
@@ -711,6 +706,11 @@ class GLDrawFunctor : Functor {
info->clipRight - info->clipLeft,
info->clipBottom - info->clipTop);
+ if (invScreenRect.isEmpty() || screenClip.isEmpty()) {
+ // NOOP operation if screenRect or clip is empty
+ return 0;
+ }
+
WebCore::IntRect localInvScreenRect = invScreenRect;
if (info->isLayer) {
// When webview is on a layer, we need to use the viewport relative