select-appearance-disabled-option-ref.html (521B)
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>option</span> 6 </div> 7 <div id=popover popover=auto anchor=button class=customizable-select-popover> 8 <div class="customizable-select-option selected">option</div> 9 <div class="customizable-select-option disabled">disabled option</div> 10 </div> 11 12 <script> 13 document.getElementById('popover').showPopover(); 14 </script>