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

Unified Diff: Source/core/frame/RootFrameViewportTest.cpp

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressed review comments Created 5 years, 7 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
Index: Source/core/frame/RootFrameViewportTest.cpp
diff --git a/Source/core/frame/RootFrameViewportTest.cpp b/Source/core/frame/RootFrameViewportTest.cpp
index ac99d6c1e8aae7c1dc7edc33359f1e30db2b7557..68d88dfee1283d0a2e839ea4b8d1703f925dd716 100644
--- a/Source/core/frame/RootFrameViewportTest.cpp
+++ b/Source/core/frame/RootFrameViewportTest.cpp
@@ -493,7 +493,7 @@ TEST_F(RootFrameViewportTest, BasicWheelEvent)
ScrollResult result = rootFrameViewport->handleWheel(wheelEvent);
- EXPECT_TRUE(result.didScroll);
+ EXPECT_TRUE(result.didScroll());
EXPECT_POINT_EQ(DoublePoint(50, 50), visualViewport.scrollPositionDouble());
EXPECT_POINT_EQ(DoublePoint(100, 200), layoutViewport.scrollPositionDouble());
EXPECT_EQ(-350, result.unusedScrollDeltaX);

Powered by Google App Engine
This is Rietveld 408576698