tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

popover-open-overflow-display-ref.html (529B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel=author href="mailto:masonf@chromium.org">
      4 
      5 <div popover id=p1>This is popover 1<div id=anchor2></div></div>
      6 <div popover id=p2 anchor=anchor2>This is popover 2<div id=anchor3></div></div>
      7 <div popover id=p3 anchor=anchor3>This is popover 3</div>
      8 
      9 <style>
     10  #p2 {
     11    top: 100px;
     12  }
     13  #p3 {
     14    top:200px;
     15  }
     16 </style>
     17 
     18 <script>
     19  document.querySelector('#p1').showPopover();
     20  document.querySelector('#p2').showPopover();
     21  document.querySelector('#p3').showPopover();
     22 </script>