Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |