| Index: chrome/browser/ui/views/toolbar_view.cc
|
| diff --git a/chrome/browser/ui/views/toolbar_view.cc b/chrome/browser/ui/views/toolbar_view.cc
|
| index 20e815606cfcdbae442134183422bf79cc21883d..7e62c398c8be857d9550d3f15f7732a580662499 100644
|
| --- a/chrome/browser/ui/views/toolbar_view.cc
|
| +++ b/chrome/browser/ui/views/toolbar_view.cc
|
| @@ -567,7 +567,7 @@ void ToolbarView::Layout() {
|
| bool ToolbarView::HitTestRect(const gfx::Rect& rect) const {
|
| // Don't take hits in our top shadow edge. Let them fall through to the
|
| // tab strip above us.
|
| - if (rect.y() < content_shadow_height())
|
| + if (rect.bottom() < content_shadow_height())
|
| return false;
|
| // Otherwise let our superclass take care of it.
|
| return AccessiblePaneView::HitTestRect(rect);
|
|
|