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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js

Issue 2319133002: Add delay promise and change automation scripts (Closed)
Patch Set: Remove a temporary comment 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_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js
diff --git a/third_party/WebKit/LayoutTests/imported/wpt_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js b/third_party/WebKit/LayoutTests/imported/wpt_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js
index 8e6a5db146b3efcfd97989c2e0984ba0f2375ca6..82cf1b31ab8570065074d8c95628dd3dcc9a4daa 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js
+++ b/third_party/WebKit/LayoutTests/imported/wpt_automation/pointerevents/pointerevent_touch-action-button-test_touch-manual-automation.js
@@ -1,24 +1,15 @@
importAutomationScript('/pointerevents/pointerevent_common_input.js');
-function callback_function() {
- window.setTimeout(function() {
- touchTapInTarget('btnComplete');}
- , scrollReturnInterval);
-}
-
function inject_input() {
- var target = document.getElementById("target0");
- var targetRect = target.getBoundingClientRect();
-
- var button = document.getElementsByTagName("button")[0];
- var buttonRect = button.getBoundingClientRect();
-
- var x = (buttonRect.left - targetRect.left)/2;
- touchScrollByPosition(x, targetRect.top + 100, 30, "down");
- touchScrollByPosition(x, targetRect.top + 100, 30, "right", callback_function);
-
- window.setTimeout(function() {
- touchSmoothScrollUp(button);
- touchSmoothScrollLeft(button, callback_function);
- } , 4*scrollReturnInterval);
-}
+ return touchScrollInTarget('#target0', 'down').then(function() {
+ return touchScrollInTarget('#target0', 'right');
+ }).then(function() {
+ return delayPromise(4*scrollReturnInterval);
+ }).then(function() {
+ return touchScrollInTarget('#testButton', 'down');
+ }).then(function() {
+ return touchScrollInTarget('#testButton', 'right');
+ }).then(function() {
+ touchTapInTarget('#btnComplete');
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698