tor-browser

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

math-depth-overflow.html (387B)


      1 <script>
      2 document.addEventListener('DOMContentLoaded', () => {
      3  let a = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'math')
      4  a.setAttribute('scriptlevel', '127')
      5  let b = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'mstyle')
      6  b.setAttribute('scriptlevel', '+2147483645')
      7  a.appendChild(b)
      8  document.documentElement.appendChild(a)
      9 })
     10 </script>