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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js

Issue 2678523002: Update a few pointerevent test and the automations (Closed)
Patch Set: Add exception for Mac due to the lack of touch support Created 3 years, 10 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/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js
diff --git a/third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js b/third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js
index db523a61cbf7f73df3eb44e48afce66ad6e6526d..6cd74259acb877f8b4b08878bf86ff0f97cb80dd 100644
--- a/third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js
+++ b/third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_releasepointercapture_events_to_original_target-manual-automation.js
@@ -1,6 +1,9 @@
importAutomationScript('/pointerevents/pointerevent_common_input.js');
function inject_input() {
- return mouseDragInTarget('#target0');
+ return pointerDragInTarget('mouse', '#target0', 'right').then(function() {
+ return pointerDragInTarget('touch', '#target0', 'right');
+ }).then(function() {
+ return pointerDragInTarget('pen', '#target0', 'right');
+ });
}
-

Powered by Google App Engine
This is Rietveld 408576698