Use fRight and fBottom instead of width() and height().

The methods width() and height() take in to account negative values for fLeft
and fTop. This can cause the width and height to be larger than the visible
rectangle which was causing cnn.com to grow arbitrarily large.
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp
index f60b6b5..f88b1d2 100644
--- a/WebKit/android/jni/WebViewCore.cpp
+++ b/WebKit/android/jni/WebViewCore.cpp
@@ -437,7 +437,12 @@
             int right = x + owner->width();
             int bottom = y + owner->height();
             SkIRect frameRect = {x, y, right, bottom};
-            if (SkIRect::Intersects(total, frameRect))
+            // Ignore a width or height that is smaller than 1. Some iframes
+            // have small dimensions in order to be hidden. The iframe
+            // expansion code does not expand in that case so we should ignore
+            // them here.
+            if (frameRect.width() > 1 && frameRect.height() > 1
+                    && SkIRect::Intersects(total, frameRect))
                 total.join(x, y, right, bottom);
         }
     }
@@ -446,7 +451,7 @@
     // all the content.
     if (!contentRect.contains(total)) {
         // Resize the view to change the overflow clip.
-        view->resize(total.width(), total.height());
+        view->resize(total.fRight, total.fBottom);
 
         // We have to force a layout in order for the clip to change.
         m_mainFrame->contentRenderer()->setNeedsLayoutAndPrefWidthsRecalc();