1734015.html (434B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 * { 6 all: initial; 7 } 8 </style> 9 <script> 10 document.addEventListener("DOMContentLoaded", () => { 11 const selection = document.getSelection() 12 const option = document.getElementById("id_0") 13 selection.setPosition(option) 14 selection.modify("move", "backward", "line") 15 }) 16 </script> 17 </head> 18 <select> 19 <option id="id_0"></option> 20 </select> 21 </html>