| Index: content/renderer/input/input_handler_proxy_unittest.cc
|
| diff --git a/content/renderer/input/input_handler_proxy_unittest.cc b/content/renderer/input/input_handler_proxy_unittest.cc
|
| index aafe9187371cceb5f7ce7f84c8fe6ede3342792c..0eea520a97b205aa88ed407d2f8a76750e2fb8e5 100644
|
| --- a/content/renderer/input/input_handler_proxy_unittest.cc
|
| +++ b/content/renderer/input/input_handler_proxy_unittest.cc
|
| @@ -288,12 +288,12 @@ TEST_F(InputHandlerProxyTest, MouseWheelByPageMainThread) {
|
| testing::Mock::VerifyAndClearExpectations(&mock_client_);
|
| }
|
|
|
| -TEST_F(InputHandlerProxyTest, MouseWheelWithCtrl) {
|
| +TEST_F(InputHandlerProxyTest, MouseWheelWithCtrlNotScroll) {
|
| expected_disposition_ = InputHandlerProxy::DID_NOT_HANDLE;
|
| WebMouseWheelEvent wheel;
|
| wheel.type = WebInputEvent::MouseWheel;
|
| wheel.modifiers = WebInputEvent::ControlKey;
|
| -
|
| + wheel.canScroll = false;
|
| EXPECT_EQ(expected_disposition_, input_handler_->HandleInputEvent(wheel));
|
| testing::Mock::VerifyAndClearExpectations(&mock_client_);
|
| }
|
|
|