| Index: third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-event-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-event-properties.html b/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-event-properties.html
|
| index e542c3f7fd0b9c676327b1cc0fc62e18d3a5d58f..0b0f11893c3a800ea3375feee917b0c1ec26d26e 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-event-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-event-properties.html
|
| @@ -20,8 +20,8 @@ async_test(function() {
|
| function checkPointerEvent(event) {
|
| receivedPointerEvents.push(event);
|
| test(function() {
|
| - assert_between_inclusive(event.pointerId, 0, POINTER_PROPERTIES.length - 1);
|
| - var pp = POINTER_PROPERTIES[event.pointerId];
|
| + assert_between_inclusive(event.pointerId, 1, POINTER_PROPERTIES.length);
|
| + var pp = POINTER_PROPERTIES[event.pointerId-1];
|
| for ( var i in pp )
|
| assert_equals(event[i], pp[i], "" + i);
|
| }, "Pointer event properties for pointer " + event.pointerId + " on " + event.type);
|
|
|