tor-browser

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

modal-dialog-display-contents-ref.html (506B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>Reference: Test that display: contents; on modal dialog & ::backdrop acts like display: block</title>
      4 <meta charset="utf-8">
      5 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
      6 <p>Test passes if there is a green dialog</p>
      7 <p>Dialog is display:block</p>
      8 <p>Dialog::backdrop is display:block</p>
      9 <dialog>Dialog Contents</dialog>
     10 <style>
     11 dialog {
     12    background-color: green;
     13 }
     14 </style>
     15 <script>
     16 document.querySelector("dialog").showModal();
     17 </script>
     18 </html>