tor-browser

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

dialog-framed.html (391B)


      1 <!doctype html>
      2 <style>
      3 html { color: red }
      4 </style>
      5 <dialog id=dialog-closed></dialog>
      6 <dialog id=dialog-open open></dialog>
      7 <dialog id=dialog-modal></dialog>
      8 <script>
      9 window.dialogClosed = document.getElementById('dialog-closed');
     10 window.dialogOpen = document.getElementById('dialog-open');
     11 window.dialogModal = document.getElementById('dialog-modal');
     12 dialogModal.showModal();
     13 </script>