| Index: content/browser/renderer_host/input/web_input_event_util_unittest.cc
|
| diff --git a/content/browser/renderer_host/input/web_input_event_util_unittest.cc b/content/browser/renderer_host/input/web_input_event_util_unittest.cc
|
| index d3dfb3cc182fb9c3296f38c2a565650f75805ddb..61dcbc77f14f29f4a8fffdc676d7f5a202110a41 100644
|
| --- a/content/browser/renderer_host/input/web_input_event_util_unittest.cc
|
| +++ b/content/browser/renderer_host/input/web_input_event_util_unittest.cc
|
| @@ -40,7 +40,7 @@ TEST(WebInputEventUtilTest, MotionEventConversion) {
|
| pointer.pressure = 30;
|
| pointer.touch_minor = 35;
|
| pointer.orientation = static_cast<float>(-M_PI / 2);
|
| - pointer.tilt = static_cast<float>(-M_PI / 3);
|
| + pointer.tilt = static_cast<float>(M_PI / 3);
|
| for (MotionEvent::ToolType tool_type : tool_types) {
|
| pointer.tool_type = tool_type;
|
| MotionEventGeneric event(
|
| @@ -65,7 +65,7 @@ TEST(WebInputEventUtilTest, MotionEventConversion) {
|
| expected_pointer.rotationAngle = 0.f;
|
| expected_pointer.force = pointer.pressure;
|
| if (tool_type == MotionEvent::TOOL_TYPE_STYLUS) {
|
| - expected_pointer.tiltX = -60;
|
| + expected_pointer.tiltX = 60;
|
| expected_pointer.tiltY = 0;
|
| } else {
|
| expected_pointer.tiltX = 0;
|
|
|