Index: Source/core/input/EventHandler.cpp |
diff --git a/Source/core/input/EventHandler.cpp b/Source/core/input/EventHandler.cpp |
index 04ea9c7ca66c2dff45ccfb07649c78b4a48899a2..2689c1d538698d39507346ad2697ce4a79013947 100644 |
--- a/Source/core/input/EventHandler.cpp |
+++ b/Source/core/input/EventHandler.cpp |
@@ -3532,6 +3532,8 @@ void EventHandler::dispatchPointerEventsForTouchEvent(const PlatformTouchEvent& |
pointerEventInit.setWidth(touchInfo.adjustedRadius.width()); |
pointerEventInit.setHeight(touchInfo.adjustedRadius.height()); |
pointerEventInit.setPressure(point.force()); |
+ pointerEventInit.setTiltX(point.pointerProperties().tiltX); |
+ pointerEventInit.setTiltY(point.pointerProperties().tiltY); |
pointerEventInit.setPointerType(PointerTypeStrForTouch); |
pointerEventInit.setIsPrimary(m_pointerIdManager.isPrimary(PointerIdManager::PointerTypeTouch, pointerId)); |
pointerEventInit.setScreenX(point.screenPos().x()); |