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

Unified Diff: Source/web/tests/PinchViewportTest.cpp

Issue 556703005: Initial draft - modify ViewportAnchor to know about both inner and outer viewports. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reapplying patch set 11 after a mac test Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | Source/web/tests/data/200-by-800-viewport.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/PinchViewportTest.cpp
diff --git a/Source/web/tests/PinchViewportTest.cpp b/Source/web/tests/PinchViewportTest.cpp
index 5e34221f8fe38c5d14032894b48dcb345c6c90fe..c18b7d663f019321b7feec51400980d66d65f83b 100644
--- a/Source/web/tests/PinchViewportTest.cpp
+++ b/Source/web/tests/PinchViewportTest.cpp
@@ -153,6 +153,7 @@ public:
settings->setViewportEnabled(true);
settings->setViewportMetaEnabled(true);
settings->setShrinksViewportContentToFit(true);
+ settings->setMainFrameResizesAreOrientationChanges(true);
}
protected:
@@ -193,6 +194,125 @@ TEST_F(PinchViewportTest, TestResize)
EXPECT_SIZE_EQ(newViewportSize, pinchViewport.size());
}
+// Test that the PinchViewport works as expected in case of a scaled
+// and scrolled viewport - scroll down.
+TEST_F(PinchViewportTest, TestResizeAfterVerticalScroll)
+{
+ /*
+ 200 200
+ | | | |
+ | | | |
+ | | 800 | | 800
+ |-------------------| | |
+ | | | |
+ | | | |
+ | | | |
+ | | --------> | |
+ | 300 | | |
+ | | | |
+ | 400 | | |
+ | | |-------------------|
+ | | | 75 |
+ | 50 | | 50 100|
+ o----- | o---- |
+ | | | | | 25 |
+ | |100 | |-------------------|
+ | | | | |
+ | | | | |
+ -------------------- --------------------
+
+ */
+
+ initializeWithAndroidSettings();
+
+ registerMockedHttpURLLoad("200-by-800-viewport.html");
+ navigateTo(m_baseURL + "200-by-800-viewport.html");
+
+ webViewImpl()->resize(IntSize(100, 200));
+
+ // Scroll main frame to the bottom of the document
+ webViewImpl()->setMainFrameScrollOffset(WebPoint(0, 400));
+ EXPECT_POINT_EQ(IntPoint(0, 400), frame()->view()->scrollPosition());
+
+ webViewImpl()->setPageScaleFactor(2.0);
+
+ // Scroll pinch viewport to the bottom of the main frame
+ PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
+ pinchViewport.setLocation(FloatPoint(0, 300));
+ EXPECT_FLOAT_POINT_EQ(FloatPoint(0, 300), pinchViewport.location());
+
+ // Verify the initial size of the pinch viewport in the CSS pixels
+ EXPECT_FLOAT_SIZE_EQ(FloatSize(50, 100), pinchViewport.visibleRect().size());
+
+ // Perform the resizing
+ webViewImpl()->resize(IntSize(200, 100));
+
+ // After resizing the scale changes 2.0 -> 4.0
+ EXPECT_FLOAT_SIZE_EQ(FloatSize(50, 25), pinchViewport.visibleRect().size());
+
+ EXPECT_POINT_EQ(IntPoint(0, 625), frame()->view()->scrollPosition());
+ EXPECT_FLOAT_POINT_EQ(FloatPoint(0, 75), pinchViewport.location());
+}
+
+// Test that the PinchViewport works as expected in case if a scaled
+// and scrolled viewport - scroll right.
+TEST_F(PinchViewportTest, TestResizeAfterHorizontalScroll)
+{
+ /*
+ 200 200
+ ---------------o----- ---------------o-----
+ | | | | 25| |
+ | | | | -----|
+ | 100| | |100 50 |
+ | | | | |
+ | ---- | |-------------------|
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ |400 | ---------> | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ |-------------------| | |
+ | | | |
+
+ */
+
+ initializeWithAndroidSettings();
+
+ registerMockedHttpURLLoad("200-by-800-viewport.html");
+ navigateTo(m_baseURL + "200-by-800-viewport.html");
+
+ webViewImpl()->resize(IntSize(100, 200));
+
+ // Outer viewport takes the whole width of the document.
+
+ webViewImpl()->setPageScaleFactor(2.0);
+
+ // Scroll pinch viewport to the right edge of the frame
+ PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
+ pinchViewport.setLocation(FloatPoint(150, 0));
+ EXPECT_FLOAT_POINT_EQ(FloatPoint(150, 0), pinchViewport.location());
+
+ // Verify the initial size of the pinch viewport in the CSS pixels
+ EXPECT_FLOAT_SIZE_EQ(FloatSize(50, 100), pinchViewport.visibleRect().size());
+
+ webViewImpl()->resize(IntSize(200, 100));
+
+ // After resizing the scale changes 2.0 -> 4.0
+ EXPECT_FLOAT_SIZE_EQ(FloatSize(50, 25), pinchViewport.visibleRect().size());
+
+ EXPECT_POINT_EQ(IntPoint(0, 0), frame()->view()->scrollPosition());
+ EXPECT_FLOAT_POINT_EQ(FloatPoint(150, 0), pinchViewport.location());
+}
+
static void disableAcceleratedCompositing(WebSettings* settings)
{
PinchViewportTest::configureSettings(settings);
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | Source/web/tests/data/200-by-800-viewport.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698