tor-browser

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

justifyfull-selection-containing-non-editable-div-and-everything-styled-white-space-break-space.html (430B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <style>
      5        * {
      6            white-space: break-spaces ! important;
      7        }
      8    </style>
      9    <script>
     10      window.addEventListener('load', () => {
     11        document.documentElement.contentEditable = true
     12        document.execCommand('selectAll', false, null)
     13        document.execCommand('justifyFull', false, null)
     14      })
     15    </script>
     16 </head>
     17 <div contenteditable='false'></div>
     18 </html>