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 // Needed on Windows to get |M_PI| from <cmath>. | 5 // Needed on Windows to get |M_PI| from <cmath>. |
6 #ifdef _WIN32 | 6 #ifdef _WIN32 |
7 #define _USE_MATH_DEFINES | 7 #define _USE_MATH_DEFINES |
8 #endif | 8 #endif |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 EXPECT_EQ(gfx::ToFlooredInt(pos.x()), web_event.x); | 118 EXPECT_EQ(gfx::ToFlooredInt(pos.x()), web_event.x); |
119 EXPECT_EQ(gfx::ToFlooredInt(pos.y()), web_event.y); | 119 EXPECT_EQ(gfx::ToFlooredInt(pos.y()), web_event.y); |
120 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.x()), web_event.globalX); | 120 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.x()), web_event.globalX); |
121 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.y()), web_event.globalY); | 121 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.y()), web_event.globalY); |
122 EXPECT_EQ(blink::WebGestureDeviceTouchscreen, web_event.sourceDevice); | 122 EXPECT_EQ(blink::WebGestureDeviceTouchscreen, web_event.sourceDevice); |
123 EXPECT_EQ(delta.x(), web_event.data.scrollUpdate.deltaX); | 123 EXPECT_EQ(delta.x(), web_event.data.scrollUpdate.deltaX); |
124 EXPECT_EQ(delta.y(), web_event.data.scrollUpdate.deltaY); | 124 EXPECT_EQ(delta.y(), web_event.data.scrollUpdate.deltaY); |
125 EXPECT_TRUE(web_event.data.scrollUpdate.previousUpdateInSequencePrevented); | 125 EXPECT_TRUE(web_event.data.scrollUpdate.previousUpdateInSequencePrevented); |
126 } | 126 } |
127 | 127 |
128 TEST(WebInputEventUtilTest, NoScalingWith1DSF) { | |
129 auto event = | |
130 SyntheticWebMouseEventBuilder::Build(blink::WebInputEvent::MouseMove, | |
131 10, 10, 0); | |
132 EXPECT_FALSE(ConvertWebInputEventToViewport(event, 1.f)); | |
133 EXPECT_TRUE(ConvertWebInputEventToViewport(event, 2.f)); | |
134 } | |
135 | |
136 } // namespace content | 128 } // namespace content |
OLD | NEW |