| Index: third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html b/third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html
|
| index bf883bdebb5ac7cb7b7587567d72a71efd87cd3c..b2a779d1f7385c3381a64e52cfdd2bc0069b8a8d 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html
|
| @@ -30,6 +30,8 @@
|
| var testHeight = 5;
|
| var testTiltX = -45;
|
| var testTiltY = 30;
|
| + var testButton = 0;
|
| + var testButtons = 1;
|
| var testPressure = 0.4;
|
| var testIsPrimary = true;
|
|
|
| @@ -40,6 +42,8 @@
|
| ["custom cancelable", event.cancelable, testCancelable],
|
| ["custom pointerId", event.pointerId, testPointerId],
|
| ["custom pointerType", event.pointerType, testPointerType],
|
| + ["custom button", event.button, testButton],
|
| + ["custom buttons", event.buttons, testButtons],
|
| ["custom width", event.width, testWidth],
|
| ["custom height", event.height, testHeight],
|
| ["custom clientX", event.clientX, testClientX],
|
| @@ -80,6 +84,8 @@
|
| clientY: testClientY,
|
| tiltX: testTiltX,
|
| tiltY: testTiltY,
|
| + button: testButton,
|
| + buttons: testButtons,
|
| pressure: testPressure,
|
| isPrimary: testIsPrimary
|
| });
|
|
|