tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

pointerenter.html (671B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta charset=utf-8 />
      4 <title>Event Timing pointerenter.</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    // A looseCount because the first move of pointerenter causes a
     16    // `pointerenter` on body
     17    return testEventType(t, 'pointerenter', true);
     18  })
     19 </script>
     20 </html>