Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_constructor.html

Issue 2376103007: Import wpt@09907a9c4bcee14986431d53e4381384c7c69107 (Closed)
Patch Set: update platform expectations Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
});

Powered by Google App Engine
This is Rietveld 408576698