mouseenter.html (631B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset=utf-8 /> 4 <title>Event Timing mouseenter.</title> 5 <script src=/resources/testharness.js></script> 6 <script src=/resources/testharnessreport.js></script> 7 <script src=/resources/testdriver.js></script> 8 <script src=/resources/testdriver-actions.js></script> 9 <script src=/resources/testdriver-vendor.js></script> 10 <script src=resources/event-timing-test-utils.js></script> 11 <div>Outside target!</div> 12 <div id='target'>Target</div> 13 <script> 14 promise_test(async t => { 15 // PointerMove also creates mouseenter events on the body 16 return testEventType(t, 'mouseenter', true); 17 }) 18 </script> 19 </html>