tor-browser

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

spacer-with-top-layer-ref.html (418B)


      1 <!doctype html>
      2 <meta charset="utf8">
      3 <title>CSS Content Visibility: dialog shows under c-v auto (ref)</title>
      4 <style>
      5 .box { width: 100px; height: 100px; border: 1px solid black; }
      6 .spacer { width: 10px; height: 3000px; background: lightblue; }
      7 
      8 </style>
      9 
     10 <div class=spacer></div>
     11 <div id=container class=box>
     12 content
     13 <dialog id=dialog>PASS<div id=inner></div></dialog>
     14 </div>
     15 
     16 <script>
     17 dialog.showModal();
     18 </script>