| Index: third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.cpp b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| index 61a5f01cdb83edccb0ac205f84e4d1482f67325a..f87a643448803b781d5690ca3976343bafcf0a79 100644
|
| --- a/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| @@ -39,8 +39,8 @@ Vector<WebTouchPoint> getCoalescedPoints(
|
| Vector<WebTouchPoint> relatedPoints;
|
| for (const auto& touchEvent : coalescedEvents) {
|
| for (unsigned i = 0; i < touchEvent.touchesLength; ++i) {
|
| - // TODO(nzolghadr): Need to filter out stationary points
|
| - if (touchEvent.touches[i].id == id)
|
| + if (touchEvent.touches[i].id == id &&
|
| + touchEvent.touches[i].state != WebTouchPoint::StateStationary)
|
| relatedPoints.push_back(touchEvent.touchPointInRootFrame(i));
|
| }
|
| }
|
|
|