tor-browser

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

240470-1.html (458B)


      1 <!DOCTYPE html>
      2 <body>
      3 <html>
      4 <select id="test" size="8">
      5 </select>
      6 <script>
      7  var optgroup = document.createElement("optgroup");
      8  optgroup.setAttribute('label', 'An optgroup');
      9  var option = document.createElement("option");
     10  var optionText = document.createTextNode("An option");
     11  option.appendChild(optionText);
     12  var select = document.getElementById("test");
     13 
     14  select.appendChild(optgroup);
     15  optgroup.appendChild(option);
     16 </script>
     17 </body>
     18 </html>