blob: 1d0171ec460e2abf7c61587030735b8f44136a16 [file] [log] [blame]
Nicolás Peña Moreno77585332020-05-13 21:29:531<!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 => {
Sean Fengf2d01052021-02-09 19:00:4715 // PointerMove also creates mouseenter events on the body
16 return testEventType(t, 'mouseenter', true);
Nicolás Peña Moreno77585332020-05-13 21:29:5317 })
18</script>
19</html>