tor-browser

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

anchor-name-table-col-crash.html (567B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugzil.la/1998440">
      3 <style>
      4    * {
      5        contain-intrinsic-size: auto none !important;
      6        anchor-name: --anchor-name_0;
      7    }
      8 </style>
      9 <script>
     10  window.addEventListener("load", async () => {
     11    const body = document.getElementById("id_3")
     12    const table = document.createElement("table")
     13    const tr = document.createElement("tr")
     14    table.appendChild(tr)
     15    const col = document.createElement("col")
     16    table.appendChild(col)
     17    body.appendChild(table)
     18  })
     19 </script>
     20 <body id="id_3">
     21 <ol></ol>
     22 </body>