| Index: third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp b/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| index afe0aff7b1d724c1d5e3367a80c331e65a070760..e5a9db9f5eb6515f6b2d8491b74e67c3390a0e38 100644
|
| --- a/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| @@ -201,27 +201,6 @@ static WebLayer* webLayerFromElement(Element* element)
|
| return graphicsLayer->platformLayer();
|
| }
|
|
|
| -
|
| -TEST_F(ScrollingCoordinatorTest, fractionalScrollingNonLayerFixedPosition)
|
| -{
|
| - registerMockedHttpURLLoad("fractional-scroll-fixed-position.html");
|
| - navigateTo(m_baseURL + "fractional-scroll-fixed-position.html");
|
| - // Prevent fixed-position element from getting its own layer.
|
| - webViewImpl()->settings()->setPreferCompositingToLCDTextEnabled(false);
|
| - forceFullCompositingUpdate();
|
| -
|
| - FrameView* frameView = frame()->view();
|
| - frameView->setScrollPosition(DoublePoint(1.5, 1.5), ProgrammaticScroll);
|
| - WebLayer* rootScrollLayer = getRootScrollLayer();
|
| - // Scroll on main if there is non-composited fixed position element.
|
| - // And the containing scroll layer should not get fractional scroll offset.
|
| - ASSERT_TRUE(rootScrollLayer->shouldScrollOnMainThread());
|
| - ASSERT_EQ(1.0, rootScrollLayer->scrollPositionDouble().x);
|
| - ASSERT_EQ(1.0, rootScrollLayer->scrollPositionDouble().y);
|
| - ASSERT_EQ(0.0, rootScrollLayer->position().x);
|
| - ASSERT_EQ(0.0, rootScrollLayer->position().y);
|
| -}
|
| -
|
| TEST_F(ScrollingCoordinatorTest, fastScrollingForFixedPosition)
|
| {
|
| registerMockedHttpURLLoad("fixed-position.html");
|
|
|