| 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 34c23d827f5755d11e759d9a662f186a7451d0c5..6d693223908d674372bbc99f893497860c15dc50 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -6115,7 +6115,7 @@ TEST_F(LayerTreeHostImplTest, ScrollUnknownScrollAncestorMismatch) {
|
| occluder_layer->SetDrawsContent(true);
|
| occluder_layer->SetBounds(content_size);
|
| occluder_layer->SetContentBounds(content_size);
|
| - occluder_layer->SetPosition(gfx::PointF());
|
| + occluder_layer->SetPosition(gfx::PointF(-10.f, -10.f));
|
| occluder_layer->SetAnchorPoint(gfx::PointF());
|
|
|
| int child_scroll_clip_layer_id = 7;
|
| @@ -6126,7 +6126,7 @@ TEST_F(LayerTreeHostImplTest, ScrollUnknownScrollAncestorMismatch) {
|
| scoped_ptr<LayerImpl> child_scroll = CreateScrollableLayer(
|
| child_scroll_layer_id, content_size, child_scroll_clip.get());
|
|
|
| - child_scroll->SetDrawsContent(false);
|
| + child_scroll->SetPosition(gfx::PointF(10.f, 10.f));
|
|
|
| child_scroll->AddChild(occluder_layer.Pass());
|
| scroll_layer->AddChild(child_scroll.Pass());
|
|
|