select-appearance-optgroup-legend-ref.html (601B)
1 <!DOCTYPE html> 2 <link rel=stylesheet href="resources/customizable-select-styles.css"> 3 4 <div class=customizable-select-button popovertarget=popover id=button> 5 <span class=customizable-select-selectedcontent>one</span> 6 </div> 7 <div id=popover popover=auto anchor=button class=customizable-select-popover> 8 <div class="customizable-select-option selected">one</div> 9 <div class=customizable-select-optgroup> 10 <div class=customizable-select-legend>legend</div> 11 <div class=customizable-select-option>two</div> 12 </div> 13 </div> 14 15 <script> 16 document.getElementById('popover').showPopover(); 17 </script>