| 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 32cae1d7439160baa71b9fb624f553e0612029a7..cbd57d9309abbab1111109f9f30040b601ac0e31 100644
|
| --- a/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp
|
| @@ -735,12 +735,12 @@ TEST_P(ScrollingCoordinatorTest, rtlIframe) {
|
| WebLayer* webScrollLayer = scrollLayer->platformLayer();
|
| ASSERT_TRUE(webScrollLayer->scrollable());
|
|
|
| - int expectedScrollPosition =
|
| - 958 + (innerFrameView->layoutViewportScrollableArea()
|
| - ->verticalScrollbar()
|
| - ->isOverlayScrollbar()
|
| - ? 0
|
| - : 15);
|
| + int expectedScrollPosition = 958 +
|
| + (innerFrameView->layoutViewportScrollableArea()
|
| + ->verticalScrollbar()
|
| + ->isOverlayScrollbar()
|
| + ? 0
|
| + : 15);
|
| ASSERT_EQ(expectedScrollPosition, webScrollLayer->scrollPosition().x);
|
| }
|
|
|
|
|