| Index: Source/web/WebInputEventConversion.cpp
|
| diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp
|
| index 96a1b5e9d7314e9e3f6f901933fd96a305539576..fcfc7d974320a609c6b79537fdd8b467138a125d 100644
|
| --- a/Source/web/WebInputEventConversion.cpp
|
| +++ b/Source/web/WebInputEventConversion.cpp
|
| @@ -753,10 +753,10 @@ static void addTouchPoints(const Widget* widget, const AtomicString& touchType,
|
| point.id = touch->identifier();
|
| point.screenPosition = touch->screenLocation();
|
| point.position = convertAbsoluteLocationForRenderObjectFloat(touch->absoluteLocation(), *renderObject);
|
| - point.radiusX = touch->webkitRadiusX();
|
| - point.radiusY = touch->webkitRadiusY();
|
| + point.radiusX = touch->radiusX();
|
| + point.radiusY = touch->radiusY();
|
| point.rotationAngle = touch->webkitRotationAngle();
|
| - point.force = touch->webkitForce();
|
| + point.force = touch->force();
|
| point.state = toWebTouchPointState(touchType);
|
|
|
| touchPoints[i] = point;
|
|
|