OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/events/blink/blink_event_util.h" |
| 6 |
| 7 #include "base/time/time.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 10 #include "ui/events/gesture_event_details.h" |
| 11 |
| 12 namespace ui { |
| 13 |
| 14 using BlinkEventUtilTest = testing::Test; |
| 15 |
| 16 TEST(BlinkEventUtilTest, NoScalingWith1DSF) { |
| 17 const ui::GestureEventDetails details(ui::ET_GESTURE_SCROLL_UPDATE, |
| 18 1, |
| 19 1); |
| 20 auto event = |
| 21 CreateWebGestureEvent(details, |
| 22 base::TimeDelta::FromMilliseconds(1), |
| 23 gfx::PointF(1.f, 1.f), |
| 24 gfx::PointF(1.f, 1.f), |
| 25 0); |
| 26 EXPECT_FALSE(ScaleWebInputEvent(event, 1.f)); |
| 27 EXPECT_TRUE(ScaleWebInputEvent(event, 2.f)); |
| 28 } |
| 29 |
| 30 } // namespace ui |
OLD | NEW |