tor-browser

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

list-marker-containing-control-char-crash.html (342B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <style>
      6 *::marker {
      7  content: '\643\D'
      8 }
      9 </style>
     10 <script>
     11 addEventListener("DOMContentLoaded", () => {
     12  getSelection().collapse(document.body.lastChild, document.body.lastChild.length);
     13 }, {once: true});
     14 </script>
     15 </head>
     16 <body>
     17 <ol>
     18    <li contenteditable></li>
     19 </ol>
     20 </body>
     21 </html>