tor-browser

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

modal-dialog-backdrop.html (558B)


      1 <!DOCTYPE html>
      2 <link rel="match" href="modal-dialog-backdrop-ref.html">
      3 <link rel="help" href="https://fullscreen.spec.whatwg.org/#user-agent-level-style-sheet-defaults">
      4 <style>
      5 dialog {
      6    top: 100px;
      7    height: 100px;
      8    width: 100px;
      9    background: green;
     10    outline: none;
     11 }
     12 </style>
     13 <body>
     14 Test for the default user agent style of dialog::backdrop. The test passes if
     15 there is a green box, above a very lightly translucent gray box spanning the
     16 viewport.
     17 <dialog></dialog>
     18 <script>
     19 document.querySelector('dialog').showModal();
     20 </script>
     21 </body>