| Index: cc/trees/layer_tree_host_impl_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
|
| index 0bb9a54f624447c8c6f5ed482fe3b488d0c6ea75..4f8d089a7e3c68ddd629e4a587fe516cc2350fb4 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -11709,6 +11709,16 @@ void LayerTreeHostImplTest::SetupMouseMoveAtTestScrollbarStates(
|
| scrollbar_2_animation_controller->mouse_is_near_scrollbar(VERTICAL));
|
| EXPECT_FALSE(
|
| scrollbar_2_animation_controller->mouse_is_over_scrollbar(VERTICAL));
|
| +
|
| + // Capture scrollbar_1, then move mouse to scrollbar_2's layer, should post an
|
| + // event to fade out scrollbar_1.
|
| + animation_task_ = base::Closure();
|
| +
|
| + host_impl_->MouseDown();
|
| + host_impl_->MouseMoveAt(gfx::Point(100, 150));
|
| + host_impl_->MouseUp();
|
| +
|
| + EXPECT_FALSE(animation_task_.Equals(base::Closure()));
|
| }
|
|
|
| TEST_F(LayerTreeHostImplTest,
|
|
|