| Index: third_party/WebKit/Source/platform/WebTouchEvent.cpp
|
| diff --git a/third_party/WebKit/Source/platform/WebTouchEvent.cpp b/third_party/WebKit/Source/platform/WebTouchEvent.cpp
|
| index 3e58320b68272dcdd59d08f7b8fdfaf89d582cfe..0ef9aca1c52621a14ac0310fead724393d10868d 100644
|
| --- a/third_party/WebKit/Source/platform/WebTouchEvent.cpp
|
| +++ b/third_party/WebKit/Source/platform/WebTouchEvent.cpp
|
| @@ -26,6 +26,8 @@ WebTouchPoint WebTouchEvent::touchPointInRootFrame(unsigned point) const {
|
| WebTouchPoint transformedPoint = touches[point];
|
| transformedPoint.radiusX /= m_frameScale;
|
| transformedPoint.radiusY /= m_frameScale;
|
| + transformedPoint.movementX /= m_frameScale;
|
| + transformedPoint.movementY /= m_frameScale;
|
| transformedPoint.position.x =
|
| (transformedPoint.position.x / m_frameScale) + m_frameTranslate.x;
|
| transformedPoint.position.y =
|
|
|