| Index: third_party/WebKit/LayoutTests/imported/wpt_automation/uievents/order-of-events/mouse-events/mouseover-out-manual-automation.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt_automation/uievents/order-of-events/mouse-events/mouseover-out-manual-automation.js b/third_party/WebKit/LayoutTests/imported/wpt_automation/uievents/order-of-events/mouse-events/mouseover-out-manual-automation.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e46675682751857b7db7a51df3161b2c3084f610
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt_automation/uievents/order-of-events/mouse-events/mouseover-out-manual-automation.js
|
| @@ -0,0 +1,15 @@
|
| +importAutomationScript('/pointerevents/pointerevent_common_input.js');
|
| +
|
| +function inject_input() {
|
| + return mouseMoveIntoTarget('#outer').then(function() {
|
| + return mouseMoveIntoTarget('#inner');
|
| + }).then(function() {
|
| + return mouseMoveIntoTarget('#released');
|
| + }).then(function() {
|
| + return mouseMoveIntoTarget('#inner');
|
| + }).then(function() {
|
| + return mouseMoveIntoTarget('#outer');
|
| + }).then(function() {
|
| + return mouseMoveToDocument();
|
| + });
|
| +}
|
|
|