focus-ring-rendering.html (290B)
1 <!DOCTYPE html> 2 <link rel=help href="https://crbug.com/389729368"> 3 <link rel=match href="focus-ring-rendering-ref.html"> 4 5 <style> 6 select { 7 appearance: base-select; 8 } 9 </style> 10 11 <select id="target"> 12 <option>Option 1</option> 13 </select> 14 15 <script> 16 onload = () => target.focus(); 17 </script>