select-popover-exit-animation-ref.html (473B)
1 <!DOCTYPE html> 2 <link rel=stylesheet href="resources/customizable-select-styles.css"> 3 4 <div>hover target</div> 5 <div class=customizable-select-button popovertarget=popover id=button> 6 <span class=customizable-select-selectedcontent>option</span> 7 </div> 8 <div id=popover popover=auto anchor=button class=customizable-select-popover> 9 <div class="customizable-select-option selected">option</div> 10 </div> 11 12 <script> 13 document.getElementById('popover').showPopover(); 14 </script>