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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt_automation/input-events/input-events-typing-data-manual-automation.js

Issue 2919603002: [WPT] Add automated manual test for InputEvent typing (Closed)
Patch Set: Created 3 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 importAutomationScript('/input-events/inputevent_common_input.js');
2
3 function inject_input() {
4 return focus('#plain').then(() => {
5 return keyDown('a');
6 }).then(() => {
7 return keyDown('b');
8 }).then(() => {
9 return focus('#rich');
10 }).then(() => {
11 return keyDown('c');
12 }).then(() => {
13 return keyDown('d');
14 });
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698