Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(658)

Side by Side Diff: Source/WebKit/chromium/tests/WebFrameTest.cpp

Issue 19281007: Allow zoom-in to a target rect when tapping multiple targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/web/WebViewImpl.h » ('j') | Source/web/WebViewImpl.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 using namespace WebKit; 85 using namespace WebKit;
86 using WebCore::Document; 86 using WebCore::Document;
87 using WebCore::DocumentMarker; 87 using WebCore::DocumentMarker;
88 using WebCore::Element; 88 using WebCore::Element;
89 using WebCore::FloatRect; 89 using WebCore::FloatRect;
90 using WebCore::HitTestRequest; 90 using WebCore::HitTestRequest;
91 using WebCore::Range; 91 using WebCore::Range;
92 using WebKit::URLTestHelpers::toKURL; 92 using WebKit::URLTestHelpers::toKURL;
93 using WebKit::FrameTestHelpers::runPendingTasks; 93 using WebKit::FrameTestHelpers::runPendingTasks;
94 94
95 static const int touchPointPadding = 32;
96
95 namespace { 97 namespace {
96 98
97 #define EXPECT_EQ_RECT(a, b) \ 99 #define EXPECT_EQ_RECT(a, b) \
98 EXPECT_EQ(a.x(), b.x()); \ 100 EXPECT_EQ(a.x(), b.x()); \
99 EXPECT_EQ(a.y(), b.y()); \ 101 EXPECT_EQ(a.y(), b.y()); \
100 EXPECT_EQ(a.width(), b.width()); \ 102 EXPECT_EQ(a.width(), b.width()); \
101 EXPECT_EQ(a.height(), b.height()); 103 EXPECT_EQ(a.height(), b.height());
102 104
103 class FakeWebFrameClient : public WebFrameClient { 105 class FakeWebFrameClient : public WebFrameClient {
104 // To make the destructor public. 106 // To make the destructor public.
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_fo r_auto_zoom_into_div_test.html"); // 1163 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_fo r_auto_zoom_into_div_test.html"); //
1162 m_webView->setDeviceScaleFactor(deviceScaleFactor); 1164 m_webView->setDeviceScaleFactor(deviceScaleFactor);
1163 m_webView->setPageScaleFactorLimits(0.01f, 4); 1165 m_webView->setPageScaleFactorLimits(0.01f, 4);
1164 m_webView->setPageScaleFactor(0.5f, WebPoint(0, 0)); 1166 m_webView->setPageScaleFactor(0.5f, WebPoint(0, 0));
1165 m_webView->resize(WebSize(viewportWidth, viewportHeight)); 1167 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1166 m_webView->enableFixedLayoutMode(true); 1168 m_webView->enableFixedLayoutMode(true);
1167 m_webView->layout(); 1169 m_webView->layout();
1168 1170
1169 WebRect wideDiv(200, 100, 400, 150); 1171 WebRect wideDiv(200, 100, 400, 150);
1170 WebRect tallDiv(200, 300, 400, 800); 1172 WebRect tallDiv(200, 300, 400, 800);
1171 WebRect doubleTapPointWide(wideDiv.x + 50, wideDiv.y + 50, 0, 0); 1173 WebRect doubleTapPointWide(
1172 WebRect doubleTapPointTall(tallDiv.x + 50, tallDiv.y + 50, 0, 0); 1174 wideDiv.x + 50, wideDiv.y + 50, touchPointPadding, touchPointPadding);
1175 WebRect doubleTapPointTall(
1176 tallDiv.x + 50, tallDiv.y + 50, touchPointPadding, touchPointPadding);
1177 WebRect wideBlockBounds;
1178 WebRect tallBlockBounds;
1173 float scale; 1179 float scale;
1174 WebPoint scroll; 1180 WebPoint scroll;
1175 bool isAnchor; 1181 bool doubleTapShouldZoomOut;
1176 1182
1177 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView); 1183 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1178 // Test double-tap zooming into wide div. 1184 // Test double-tap zooming into wide div.
1179 webViewImpl->computeScaleAndScrollForHitRect(doubleTapPointWide, WebViewImpl ::DoubleTap, scale, scroll, isAnchor); 1185 wideBlockBounds =
1186 webViewImpl->computeBlockBounds(doubleTapPointWide, false);
1187 webViewImpl->computeScaleAndScrollForHitRect(
1188 wideBlockBounds, touchPointPadding, scale, scroll,
1189 doubleTapShouldZoomOut);
1190 scroll = webViewImpl->clampOffsetAtScale(scroll, scale);
1180 // The div should horizontally fill the screen (modulo margins), and 1191 // The div should horizontally fill the screen (modulo margins), and
1181 // vertically centered (modulo integer rounding). 1192 // vertically centered (modulo integer rounding).
1182 EXPECT_NEAR(viewportWidth / (float) wideDiv.width, scale, 0.1); 1193 EXPECT_NEAR(viewportWidth / (float) wideDiv.width, scale, 0.1);
1183 EXPECT_NEAR(wideDiv.x, scroll.x, 20); 1194 EXPECT_NEAR(wideDiv.x, scroll.x, 20);
1184 EXPECT_EQ(0, scroll.y); 1195 EXPECT_EQ(0, scroll.y);
1185 EXPECT_FALSE(isAnchor); 1196 EXPECT_FALSE(doubleTapShouldZoomOut);
1186 1197
1187 setScaleAndScrollAndLayout(webViewImpl, scroll, scale); 1198 setScaleAndScrollAndLayout(webViewImpl, scroll, scale);
1188 1199
1189 // Test zoom out back to minimum scale. 1200 // Test zoom out back to minimum scale.
1190 webViewImpl->computeScaleAndScrollForHitRect(doubleTapPointWide, WebViewImpl ::DoubleTap, scale, scroll, isAnchor); 1201 wideBlockBounds =
1191 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale); 1202 webViewImpl->computeBlockBounds(doubleTapPointWide, false);
1192 EXPECT_TRUE(isAnchor); 1203 webViewImpl->computeScaleAndScrollForHitRect(
1204 wideBlockBounds, touchPointPadding, scale, scroll,
1205 doubleTapShouldZoomOut);
1206 scroll = webViewImpl->clampOffsetAtScale(scroll, scale);
1207 EXPECT_TRUE(doubleTapShouldZoomOut);
1193 1208
1209 scale = webViewImpl->minimumPageScaleFactor();
1194 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), scale); 1210 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), scale);
1195 1211
1196 // Test double-tap zooming into tall div. 1212 // Test double-tap zooming into tall div.
1197 webViewImpl->computeScaleAndScrollForHitRect(doubleTapPointTall, WebViewImpl ::DoubleTap, scale, scroll, isAnchor); 1213 tallBlockBounds =
1214 webViewImpl->computeBlockBounds(doubleTapPointTall, false);
1215 webViewImpl->computeScaleAndScrollForHitRect(
1216 tallBlockBounds, touchPointPadding, scale, scroll,
1217 doubleTapShouldZoomOut);
1218 scroll = webViewImpl->clampOffsetAtScale(scroll, scale);
1198 // The div should start at the top left of the viewport. 1219 // The div should start at the top left of the viewport.
1199 EXPECT_NEAR(viewportWidth / (float) tallDiv.width, scale, 0.1); 1220 EXPECT_NEAR(viewportWidth / (float) tallDiv.width, scale, 0.1);
1200 EXPECT_NEAR(tallDiv.x, scroll.x, 20); 1221 EXPECT_NEAR(tallDiv.x, scroll.x, 20);
1201 EXPECT_NEAR(tallDiv.y, scroll.y, 20); 1222 EXPECT_NEAR(tallDiv.y, scroll.y, 20);
1202 EXPECT_FALSE(isAnchor); 1223 EXPECT_FALSE(doubleTapShouldZoomOut);
1203 1224
1204 // Test for Non-doubletap scaling 1225 // Test for Non-doubletap scaling
1205 // Test zooming into div. 1226 // Test zooming into div.
1206 webViewImpl->computeScaleAndScrollForHitRect(WebRect(250, 250, 10, 10), WebV iewImpl::FindInPage, scale, scroll, isAnchor); 1227 webViewImpl->computeScaleAndScrollForHitRect(
1228 webViewImpl->computeBlockBounds(WebRect(250, 250, 10, 10), true),
1229 0, scale, scroll, doubleTapShouldZoomOut);
1230 scroll = webViewImpl->clampOffsetAtScale(scroll, scale);
1207 EXPECT_NEAR(viewportWidth / (float) wideDiv.width, scale, 0.1); 1231 EXPECT_NEAR(viewportWidth / (float) wideDiv.width, scale, 0.1);
1208 } 1232 }
1209 1233
1234 void simulatePageScale(WebViewImpl* webViewImpl, float& scale)
1235 {
1236 WebCore::IntSize scrollDelta =
1237 webViewImpl->fakePageScaleAnimationTargetPositionForTesting()
1238 - webViewImpl->mainFrameImpl()->frameView()->scrollPosition();
1239 float scaleDelta =
1240 webViewImpl->fakePageScaleAnimationPageScaleForTesting()
1241 / webViewImpl->pageScaleFactor();
1242 webViewImpl->applyScrollAndScale(scrollDelta, scaleDelta);
1243 scale = webViewImpl->pageScaleFactor();
1244 }
1245
1246 void simulateMultiTargetZoom(
1247 WebViewImpl* webViewImpl,
1248 const WebRect& rect,
1249 float& scale)
1250 {
1251 if (webViewImpl->zoomToMultipleTargetsRect(rect))
1252 simulatePageScale(webViewImpl, scale);
1253 }
1254
1210 void simulateDoubleTap(WebViewImpl* webViewImpl, WebPoint& point, float& scale) 1255 void simulateDoubleTap(WebViewImpl* webViewImpl, WebPoint& point, float& scale)
1211 { 1256 {
1212 webViewImpl->animateZoomAroundPoint(point, WebViewImpl::DoubleTap); 1257 webViewImpl->animateDoubleTapZoom(point);
1213 EXPECT_TRUE(webViewImpl->fakeDoubleTapAnimationPendingForTesting()); 1258 EXPECT_TRUE(webViewImpl->fakeDoubleTapAnimationPendingForTesting());
1214 WebCore::IntSize scrollDelta = webViewImpl->fakeDoubleTapTargetPositionForTe sting() - webViewImpl->mainFrameImpl()->frameView()->scrollPosition(); 1259 simulatePageScale(webViewImpl, scale);
1215 float scaleDelta = webViewImpl->fakeDoubleTapPageScaleFactorForTesting() / w ebViewImpl->pageScaleFactor();
1216 webViewImpl->applyScrollAndScale(scrollDelta, scaleDelta);
1217 scale = webViewImpl->pageScaleFactor();
1218 } 1260 }
1219 1261
1220 TEST_F(WebFrameTest, DivAutoZoomMultipleDivsTest) 1262 TEST_F(WebFrameTest, DivAutoZoomMultipleDivsTest)
1221 { 1263 {
1222 registerMockedHttpURLLoad("get_multiple_divs_for_auto_zoom_test.html"); 1264 registerMockedHttpURLLoad("get_multiple_divs_for_auto_zoom_test.html");
1223 1265
1224 const float deviceScaleFactor = 2.0f; 1266 const float deviceScaleFactor = 2.0f;
1225 int viewportWidth = 640 / deviceScaleFactor; 1267 int viewportWidth = 640 / deviceScaleFactor;
1226 int viewportHeight = 1280 / deviceScaleFactor; 1268 int viewportHeight = 1280 / deviceScaleFactor;
1227 float doubleTapZoomAlreadyLegibleRatio = 1.2f; 1269 float doubleTapZoomAlreadyLegibleRatio = 1.2f;
1228 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_multiple _divs_for_auto_zoom_test.html"); 1270 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_multiple _divs_for_auto_zoom_test.html");
1229 m_webView->enableFixedLayoutMode(true); 1271 m_webView->enableFixedLayoutMode(true);
1230 m_webView->resize(WebSize(viewportWidth, viewportHeight)); 1272 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1231 m_webView->setPageScaleFactorLimits(0.5f, 4); 1273 m_webView->setPageScaleFactorLimits(0.5f, 4);
1232 m_webView->setDeviceScaleFactor(deviceScaleFactor); 1274 m_webView->setDeviceScaleFactor(deviceScaleFactor);
1233 m_webView->setPageScaleFactor(0.5f, WebPoint(0, 0)); 1275 m_webView->setPageScaleFactor(0.5f, WebPoint(0, 0));
1234 m_webView->layout(); 1276 m_webView->layout();
1235 1277
1236 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView); 1278 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1237 webViewImpl->enableFakeDoubleTapAnimationForTesting(true); 1279 webViewImpl->enableFakePageScaleAnimationForTesting(true);
1238 1280
1239 WebRect topDiv(200, 100, 200, 150); 1281 WebRect topDiv(200, 100, 200, 150);
1240 WebRect bottomDiv(200, 300, 200, 150); 1282 WebRect bottomDiv(200, 300, 200, 150);
1241 WebPoint topPoint(topDiv.x + 50, topDiv.y + 50); 1283 WebPoint topPoint(topDiv.x + 50, topDiv.y + 50);
1242 WebPoint bottomPoint(bottomDiv.x + 50, bottomDiv.y + 50); 1284 WebPoint bottomPoint(bottomDiv.x + 50, bottomDiv.y + 50);
1243 float scale; 1285 float scale;
1244 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2); 1286 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2);
1245 1287
1246 // Test double tap on two different divs 1288 // Test double tap on two different divs
1247 // After first zoom, we should go back to minimum page scale with a second d ouble tap. 1289 // After first zoom, we should go back to minimum page scale with a second d ouble tap.
1248 simulateDoubleTap(webViewImpl, topPoint, scale); 1290 simulateDoubleTap(webViewImpl, topPoint, scale);
1249 EXPECT_FLOAT_EQ(1, scale); 1291 EXPECT_FLOAT_EQ(1, scale);
1250 simulateDoubleTap(webViewImpl, bottomPoint, scale); 1292 simulateDoubleTap(webViewImpl, bottomPoint, scale);
1251 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale); 1293 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale);
1252 1294
1253 // If the user pinch zooms after double tap, a second double tap should zoom back to the div. 1295 // If the user pinch zooms after double tap, a second double tap should zoom back to the div.
1254 simulateDoubleTap(webViewImpl, topPoint, scale); 1296 simulateDoubleTap(webViewImpl, topPoint, scale);
1255 EXPECT_FLOAT_EQ(1, scale); 1297 EXPECT_FLOAT_EQ(1, scale);
1256 webViewImpl->applyScrollAndScale(WebSize(), 0.6f); 1298 webViewImpl->applyScrollAndScale(WebSize(), 0.6f);
1257 simulateDoubleTap(webViewImpl, bottomPoint, scale); 1299 simulateDoubleTap(webViewImpl, bottomPoint, scale);
1258 EXPECT_FLOAT_EQ(1, scale); 1300 EXPECT_FLOAT_EQ(1, scale);
1259 simulateDoubleTap(webViewImpl, bottomPoint, scale); 1301 simulateDoubleTap(webViewImpl, bottomPoint, scale);
1260 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale); 1302 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale);
1261 1303
1262 // If we didn't yet get an auto-zoom update and a second double-tap arrives, should go back to minimum scale. 1304 // If we didn't yet get an auto-zoom update and a second double-tap arrives, should go back to minimum scale.
1263 webViewImpl->applyScrollAndScale(WebSize(), 1.1f); 1305 webViewImpl->applyScrollAndScale(WebSize(), 1.1f);
1264 webViewImpl->animateZoomAroundPoint(topPoint, WebViewImpl::DoubleTap); 1306 webViewImpl->animateDoubleTapZoom(topPoint);
1265 EXPECT_TRUE(webViewImpl->fakeDoubleTapAnimationPendingForTesting()); 1307 EXPECT_TRUE(webViewImpl->fakeDoubleTapAnimationPendingForTesting());
1266 simulateDoubleTap(webViewImpl, bottomPoint, scale); 1308 simulateDoubleTap(webViewImpl, bottomPoint, scale);
1267 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale); 1309 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale);
1268 } 1310 }
1269 1311
1270 TEST_F(WebFrameTest, DivAutoZoomScaleBoundsTest) 1312 TEST_F(WebFrameTest, DivAutoZoomScaleBoundsTest)
1271 { 1313 {
1272 registerMockedHttpURLLoad("get_scale_bounds_check_for_auto_zoom_test.html"); 1314 registerMockedHttpURLLoad("get_scale_bounds_check_for_auto_zoom_test.html");
1273 1315
1274 int viewportWidth = 320; 1316 int viewportWidth = 320;
1275 int viewportHeight = 480; 1317 int viewportHeight = 480;
1276 float doubleTapZoomAlreadyLegibleRatio = 1.2f; 1318 float doubleTapZoomAlreadyLegibleRatio = 1.2f;
1277 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_bo unds_check_for_auto_zoom_test.html"); 1319 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_bo unds_check_for_auto_zoom_test.html");
1278 m_webView->enableFixedLayoutMode(true); 1320 m_webView->enableFixedLayoutMode(true);
1279 m_webView->resize(WebSize(viewportWidth, viewportHeight)); 1321 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1280 m_webView->setDeviceScaleFactor(1.5f); 1322 m_webView->setDeviceScaleFactor(1.5f);
1281 m_webView->layout(); 1323 m_webView->layout();
1282 1324
1283 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView); 1325 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1284 webViewImpl->enableFakeDoubleTapAnimationForTesting(true); 1326 webViewImpl->enableFakePageScaleAnimationForTesting(true);
1285 1327
1286 WebRect div(200, 100, 200, 150); 1328 WebRect div(200, 100, 200, 150);
1287 WebPoint doubleTapPoint(div.x + 50, div.y + 50); 1329 WebPoint doubleTapPoint(div.x + 50, div.y + 50);
1288 float scale; 1330 float scale;
1289 1331
1290 // Test double tap scale bounds. 1332 // Test double tap scale bounds.
1291 // minimumPageScale < doubleTapZoomAlreadyLegibleScale < 1 1333 // minimumPageScale < doubleTapZoomAlreadyLegibleScale < 1
1292 m_webView->setPageScaleFactorLimits(0.5f, 4); 1334 m_webView->setPageScaleFactorLimits(0.5f, 4);
1293 m_webView->layout(); 1335 m_webView->layout();
1294 float doubleTapZoomAlreadyLegibleScale = webViewImpl->minimumPageScaleFactor () * doubleTapZoomAlreadyLegibleRatio; 1336 float doubleTapZoomAlreadyLegibleScale = webViewImpl->minimumPageScaleFactor () * doubleTapZoomAlreadyLegibleRatio;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1336 int viewportWidth = 320; 1378 int viewportWidth = 320;
1337 int viewportHeight = 480; 1379 int viewportHeight = 480;
1338 float doubleTapZoomAlreadyLegibleRatio = 1.2f; 1380 float doubleTapZoomAlreadyLegibleRatio = 1.2f;
1339 float textAutosizingFontScaleFactor = 1.13f; 1381 float textAutosizingFontScaleFactor = 1.13f;
1340 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_bo unds_check_for_auto_zoom_test.html"); 1382 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_bo unds_check_for_auto_zoom_test.html");
1341 m_webView->enableFixedLayoutMode(true); 1383 m_webView->enableFixedLayoutMode(true);
1342 m_webView->resize(WebSize(viewportWidth, viewportHeight)); 1384 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1343 m_webView->layout(); 1385 m_webView->layout();
1344 1386
1345 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView); 1387 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1346 webViewImpl->enableFakeDoubleTapAnimationForTesting(true); 1388 webViewImpl->enableFakePageScaleAnimationForTesting(true);
1347 webViewImpl->page()->settings()->setTextAutosizingFontScaleFactor(textAutosi zingFontScaleFactor); 1389 webViewImpl->page()->settings()->setTextAutosizingFontScaleFactor(textAutosi zingFontScaleFactor);
1348 1390
1349 WebRect div(200, 100, 200, 150); 1391 WebRect div(200, 100, 200, 150);
1350 WebPoint doubleTapPoint(div.x + 50, div.y + 50); 1392 WebPoint doubleTapPoint(div.x + 50, div.y + 50);
1351 float scale; 1393 float scale;
1352 1394
1353 // Test double tap scale bounds. 1395 // Test double tap scale bounds.
1354 // minimumPageScale < doubleTapZoomAlreadyLegibleScale < 1 < textAutosizingF ontScaleFactor 1396 // minimumPageScale < doubleTapZoomAlreadyLegibleScale < 1 < textAutosizingF ontScaleFactor
1355 float legibleScale = textAutosizingFontScaleFactor; 1397 float legibleScale = textAutosizingFontScaleFactor;
1356 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2); 1398 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1400 doubleTapZoomAlreadyLegibleScale = webViewImpl->minimumPageScaleFactor() * d oubleTapZoomAlreadyLegibleRatio; 1442 doubleTapZoomAlreadyLegibleScale = webViewImpl->minimumPageScaleFactor() * d oubleTapZoomAlreadyLegibleRatio;
1401 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2); 1443 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0), (webViewImpl->minimu mPageScaleFactor()) * (1 + doubleTapZoomAlreadyLegibleRatio) / 2);
1402 simulateDoubleTap(webViewImpl, doubleTapPoint, scale); 1444 simulateDoubleTap(webViewImpl, doubleTapPoint, scale);
1403 EXPECT_FLOAT_EQ(legibleScale, scale); 1445 EXPECT_FLOAT_EQ(legibleScale, scale);
1404 simulateDoubleTap(webViewImpl, doubleTapPoint, scale); 1446 simulateDoubleTap(webViewImpl, doubleTapPoint, scale);
1405 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale); 1447 EXPECT_FLOAT_EQ(webViewImpl->minimumPageScaleFactor(), scale);
1406 simulateDoubleTap(webViewImpl, doubleTapPoint, scale); 1448 simulateDoubleTap(webViewImpl, doubleTapPoint, scale);
1407 EXPECT_FLOAT_EQ(legibleScale, scale); 1449 EXPECT_FLOAT_EQ(legibleScale, scale);
1408 } 1450 }
1409 1451
1452 TEST_F(WebFrameTest, DivMultipleTargetZoomMultipleDivsTest)
1453 {
1454 registerMockedHttpURLLoad("get_multiple_divs_for_auto_zoom_test.html");
1455
1456 const float deviceScaleFactor = 2.0f;
1457 int viewportWidth = 640 / deviceScaleFactor;
1458 int viewportHeight = 1280 / deviceScaleFactor;
1459 float doubleTapZoomAlreadyLegibleRatio = 1.2f;
1460 m_webView = FrameTestHelpers::createWebViewAndLoad(
1461 m_baseURL + "get_multiple_divs_for_auto_zoom_test.html");
1462 m_webView->enableFixedLayoutMode(true);
1463 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1464 m_webView->setPageScaleFactorLimits(0.5f, 4);
1465 m_webView->setDeviceScaleFactor(deviceScaleFactor);
1466 m_webView->setPageScaleFactor(0.5f, WebPoint(0, 0));
1467 m_webView->layout();
1468
1469 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1470 webViewImpl->enableFakePageScaleAnimationForTesting(true);
1471
1472 WebRect viewportRect(0, 0, viewportWidth, viewportHeight);
1473 WebRect topDiv(200, 100, 200, 150);
1474 WebRect bottomDiv(200, 300, 200, 150);
1475 float scale;
1476 setScaleAndScrollAndLayout(webViewImpl, WebPoint(0, 0),
1477 (webViewImpl->minimumPageScaleFactor())
1478 * (1 + doubleTapZoomAlreadyLegibleRatio) / 2);
1479
1480 simulateMultiTargetZoom(webViewImpl, topDiv, scale);
1481 EXPECT_FLOAT_EQ(1, scale);
1482 simulateMultiTargetZoom(webViewImpl, bottomDiv, scale);
1483 EXPECT_FLOAT_EQ(1, scale);
1484 simulateMultiTargetZoom(webViewImpl, viewportRect, scale);
1485 EXPECT_FLOAT_EQ(1, scale);
1486 webViewImpl->setPageScaleFactor(
1487 webViewImpl->minimumPageScaleFactor(), WebPoint(0, 0));
1488 simulateMultiTargetZoom(webViewImpl, topDiv, scale);
1489 EXPECT_FLOAT_EQ(1, scale);
1490 }
1491
1410 TEST_F(WebFrameTest, DivScrollIntoEditableTest) 1492 TEST_F(WebFrameTest, DivScrollIntoEditableTest)
1411 { 1493 {
1412 registerMockedHttpURLLoad("get_scale_for_zoom_into_editable_test.html"); 1494 registerMockedHttpURLLoad("get_scale_for_zoom_into_editable_test.html");
1413 1495
1414 int viewportWidth = 450; 1496 int viewportWidth = 450;
1415 int viewportHeight = 300; 1497 int viewportHeight = 300;
1416 float leftBoxRatio = 0.3f; 1498 float leftBoxRatio = 0.3f;
1417 int caretPadding = 10; 1499 int caretPadding = 10;
1418 float minReadableCaretHeight = 18.0f; 1500 float minReadableCaretHeight = 18.0f;
1419 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_fo r_zoom_into_editable_test.html"); 1501 m_webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "get_scale_fo r_zoom_into_editable_test.html");
1420 m_webView->enableFixedLayoutMode(true); 1502 m_webView->enableFixedLayoutMode(true);
1421 m_webView->resize(WebSize(viewportWidth, viewportHeight)); 1503 m_webView->resize(WebSize(viewportWidth, viewportHeight));
1422 m_webView->setPageScaleFactorLimits(1, 4); 1504 m_webView->setPageScaleFactorLimits(1, 4);
1423 m_webView->layout(); 1505 m_webView->layout();
1424 m_webView->setDeviceScaleFactor(1.5f); 1506 m_webView->setDeviceScaleFactor(1.5f);
1425 m_webView->settings()->setAutoZoomFocusedNodeToLegibleScale(true); 1507 m_webView->settings()->setAutoZoomFocusedNodeToLegibleScale(true);
1426 1508
1427 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView); 1509 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(m_webView);
1428 webViewImpl->enableFakeDoubleTapAnimationForTesting(true); 1510 webViewImpl->enableFakePageScaleAnimationForTesting(true);
1429 1511
1430 WebRect editBoxWithText(200, 200, 250, 20); 1512 WebRect editBoxWithText(200, 200, 250, 20);
1431 WebRect editBoxWithNoText(200, 250, 250, 20); 1513 WebRect editBoxWithNoText(200, 250, 250, 20);
1432 1514
1433 // Test scrolling the focused node 1515 // Test scrolling the focused node
1434 // The edit box is shorter and narrower than the viewport when legible. 1516 // The edit box is shorter and narrower than the viewport when legible.
1435 m_webView->advanceFocus(false); 1517 m_webView->advanceFocus(false);
1436 // Set the caret to the end of the input box. 1518 // Set the caret to the end of the input box.
1437 m_webView->mainFrame()->document().getElementById("EditBoxWithText").to<WebI nputElement>().setSelectionRange(1000, 1000); 1519 m_webView->mainFrame()->document().getElementById("EditBoxWithText").to<WebI nputElement>().setSelectionRange(1000, 1000);
1438 setScaleAndScrollAndLayout(m_webView, WebPoint(0, 0), 1); 1520 setScaleAndScrollAndLayout(m_webView, WebPoint(0, 0), 1);
(...skipping 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after
3408 frame->reload(); 3490 frame->reload();
3409 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests(); 3491 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
3410 EXPECT_EQ(WebURLRequest::ReloadIgnoringCacheData, frame->dataSource()->reque st().cachePolicy()); 3492 EXPECT_EQ(WebURLRequest::ReloadIgnoringCacheData, frame->dataSource()->reque st().cachePolicy());
3411 3493
3412 m_webView->close(); 3494 m_webView->close();
3413 m_webView = 0; 3495 m_webView = 0;
3414 } 3496 }
3415 3497
3416 3498
3417 } // namespace 3499 } // namespace
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebViewImpl.h » ('j') | Source/web/WebViewImpl.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698