OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "core/frame/PinchViewport.h" | 7 #include "core/frame/PinchViewport.h" |
8 | 8 |
9 #include "core/frame/FrameHost.h" | 9 #include "core/frame/FrameHost.h" |
10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 #define EXPECT_FLOAT_RECT_EQ(expected, actual) \ | 61 #define EXPECT_FLOAT_RECT_EQ(expected, actual) \ |
62 do { \ | 62 do { \ |
63 EXPECT_FLOAT_EQ((expected).x(), (actual).x()); \ | 63 EXPECT_FLOAT_EQ((expected).x(), (actual).x()); \ |
64 EXPECT_FLOAT_EQ((expected).y(), (actual).y()); \ | 64 EXPECT_FLOAT_EQ((expected).y(), (actual).y()); \ |
65 EXPECT_FLOAT_EQ((expected).width(), (actual).width()); \ | 65 EXPECT_FLOAT_EQ((expected).width(), (actual).width()); \ |
66 EXPECT_FLOAT_EQ((expected).height(), (actual).height()); \ | 66 EXPECT_FLOAT_EQ((expected).height(), (actual).height()); \ |
67 } while (false) | 67 } while (false) |
68 | 68 |
69 | 69 |
70 using namespace WebCore; | 70 using namespace blink; |
71 using namespace blink; | 71 using namespace blink; |
72 | 72 |
73 using ::testing::_; | 73 using ::testing::_; |
74 using ::testing::PrintToString; | 74 using ::testing::PrintToString; |
75 using ::testing::Mock; | 75 using ::testing::Mock; |
76 | 76 |
77 namespace blink { | 77 namespace blink { |
78 ::std::ostream& operator<<(::std::ostream& os, const WebContextMenuData& data) | 78 ::std::ostream& operator<<(::std::ostream& os, const WebContextMenuData& data) |
79 { | 79 { |
80 return os << "Context menu location: [" | 80 return os << "Context menu location: [" |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 pinchViewport.scrollIntoView(FloatRect(50, 75, 50, 75)); | 796 pinchViewport.scrollIntoView(FloatRect(50, 75, 50, 75)); |
797 EXPECT_POINT_EQ(IntPoint(50, 75), frame()->view()->scrollPosition()); | 797 EXPECT_POINT_EQ(IntPoint(50, 75), frame()->view()->scrollPosition()); |
798 EXPECT_FLOAT_POINT_EQ(FloatPoint(), pinchViewport.visibleRect().location()); | 798 EXPECT_FLOAT_POINT_EQ(FloatPoint(), pinchViewport.visibleRect().location()); |
799 | 799 |
800 pinchViewport.scrollIntoView(FloatRect(190, 290, 10, 10)); | 800 pinchViewport.scrollIntoView(FloatRect(190, 290, 10, 10)); |
801 EXPECT_POINT_EQ(IntPoint(100, 150), frame()->view()->scrollPosition()); | 801 EXPECT_POINT_EQ(IntPoint(100, 150), frame()->view()->scrollPosition()); |
802 EXPECT_FLOAT_POINT_EQ(FloatPoint(50, 75), pinchViewport.visibleRect().locati
on()); | 802 EXPECT_FLOAT_POINT_EQ(FloatPoint(50, 75), pinchViewport.visibleRect().locati
on()); |
803 } | 803 } |
804 | 804 |
805 } // namespace | 805 } // namespace |
OLD | NEW |