select-open-invalidation-ref.html (579B)
1 <!DOCTYPE html> 2 <link rel=stylesheet href="resources/customizable-select-styles.css"> 3 4 <style> 5 .customizable-select-selectedoption { 6 color: green; 7 } 8 </style> 9 10 <div class=customizable-select-button popovertarget=popover id=button> 11 <span class=customizable-select-selectedoption>button</span> 12 </div> 13 <div id=popover popover=auto anchor=button class=customizable-select-popover> 14 <div tabindex=0 class="customizable-select-option selected">one</div> 15 <div class=customizable-select-option>two</div> 16 </div> 17 18 <script> 19 document.getElementById('popover').showPopover(); 20 </script>