For mobile site, allow text wrap to screen if scale
is not same as screen width scale.

Fix http://b/issue?id=2375232
diff --git a/WebCore/rendering/RenderBlockLineLayout.cpp b/WebCore/rendering/RenderBlockLineLayout.cpp
index 615a369..cc0fc58 100644
--- a/WebCore/rendering/RenderBlockLineLayout.cpp
+++ b/WebCore/rendering/RenderBlockLineLayout.cpp
@@ -40,6 +40,7 @@
 #include "Settings.h"
 #include "Text.h"
 #include "HTMLNames.h"
+#include "WebViewCore.h"
 #endif // ANDROID_LAYOUT
 
 using namespace std;
@@ -861,8 +862,10 @@
         // will wrap text around screen width so that it doesn't need to scroll
         // horizontally when reading a paragraph.
         const Settings* settings = document()->settings();
-        bool doTextWrap = settings && settings->viewportWidth() != 0 &&
-                settings->layoutAlgorithm() == Settings::kLayoutFitColumnToScreen;
+        android::WebViewCore* core = android::WebViewCore::getWebViewCore(view()->frameView());
+        bool doTextWrap = settings && (settings->viewportWidth() != 0
+                || fabs(core->scale() - core->screenWidthScale()) > 0.01)
+                && settings->layoutAlgorithm() == Settings::kLayoutFitColumnToScreen;
         if (doTextWrap) {
             int ta = style()->textAlign();
             int dir = style()->direction();