tor-browser

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

not-on-first-task.html (650B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>The element is not focused during the initial parsing task</title>
      4 <link rel="help" href="https://html.spec.whatwg.org/multipage/#autofocusing-a-form-control:-the-autofocus-attribute">
      5 <link rel="author" title="Domenic Denicola" href="d@domenic.me">
      6 
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 
     10 <input autofocus>
     11 <input autofocus>
     12 
     13 <script>
     14 "use strict";
     15 
     16 test(() => {
     17  const input = document.querySelector("input");
     18 
     19  assert_equals(document.activeElement, document.body);
     20  assert_not_equals(document.activeElement, input);
     21 });
     22 </script>