tor-browser

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

skip-non-focusable.html (565B)


      1 <!DOCTYPE html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <script src="resources/utils.js"></script>
      5 
      6 <textarea autofocus disabled></textarea>
      7 <select autofocus></select>
      8 
      9 <script>
     10 'use strict';
     11 
     12 promise_test(async () => {
     13  const [textarea, select] = document.querySelectorAll('[autofocus]');
     14 
     15  await waitUntilStableAutofocusState();
     16  assert_not_equals(document.activeElement, textarea);
     17  assert_equals(document.activeElement, select);
     18 }, 'Non-focusable autofocus element is skipped.');
     19 </script>