tor-browser

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

unicode-bidi-select-crash.html (414B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/1329417">
      3 <style>
      4  select {
      5    unicode-bidi: bidi-override;
      6  }
      7 </style>
      8 <body>
      9  <select>
     10    <option>Test1</option>
     11    <option id="opt" hidden="hidden">Test2</option>
     12  </select>
     13 </body>
     14 <script>
     15  document.body.offsetTop;
     16  opt.defaultSelected = true;
     17  window.getSelection().selectAllChildren(document.body);
     18  document.vlinkColor = "red";
     19 </script>