tor-browser

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

popover-open-display.html (625B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel=author href="mailto:masonf@chromium.org">
      4 <link rel=help href="https://open-ui.org/components/popover.research.explainer">
      5 <link rel=help href="https://html.spec.whatwg.org/multipage/popover.html">
      6 <link rel=match href="popover-open-display-ref.html">
      7 
      8 <div popover>This is a popover</div>
      9 <div class=topmost></div>
     10 
     11 <style>
     12  .topmost {
     13    position:fixed;
     14    z-index: 999999;
     15    top:0;
     16    left:0;
     17    width:1000px;
     18    height:1000px;
     19    background:green;
     20    margin:0;
     21    padding:0;
     22  }
     23 </style>
     24 
     25 <script>
     26  document.querySelector('[popover]').showPopover();
     27 </script>