Loading core/java/android/webkit/WebView.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -4935,8 +4935,8 @@ public class WebView extends AbsoluteLayout int measuredWidth = widthSize; int measuredWidth = widthSize; // Grab the content size from WebViewCore. // Grab the content size from WebViewCore. int contentHeight = mContentHeight; int contentHeight = Math.round(mContentHeight * mActualScale); int contentWidth = mContentWidth; int contentWidth = Math.round(mContentWidth * mActualScale); // Log.d(LOGTAG, "------- measure " + heightMode); // Log.d(LOGTAG, "------- measure " + heightMode); Loading Loading
core/java/android/webkit/WebView.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -4935,8 +4935,8 @@ public class WebView extends AbsoluteLayout int measuredWidth = widthSize; int measuredWidth = widthSize; // Grab the content size from WebViewCore. // Grab the content size from WebViewCore. int contentHeight = mContentHeight; int contentHeight = Math.round(mContentHeight * mActualScale); int contentWidth = mContentWidth; int contentWidth = Math.round(mContentWidth * mActualScale); // Log.d(LOGTAG, "------- measure " + heightMode); // Log.d(LOGTAG, "------- measure " + heightMode); Loading