tor-browser

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

select-optgroup-crash.html (433B)


      1 <!DOCTYPE html>
      2 <html>
      3 <link rel=author href="mailto:jarhar@chromium.org">
      4 <link rel=help href="https://issues.chromium.org/issues/398077423">
      5 <script>
      6 const div = document.createElement('div');
      7 const optgroup = document.createElement('optgroup');
      8 const option = document.createElement('option');
      9 const select = document.createElement('select');
     10 div.appendChild(option);
     11 div.appendChild(optgroup);
     12 select.appendChild(div);
     13 </script>