summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/crashtests/math-depth-overflow.html
blob: e096dbb558812ce38ecacc0eb4c32aab1a185bd8 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
document.addEventListener('DOMContentLoaded', () => {
  let a = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'math')
  a.setAttribute('scriptlevel', '127')
  let b = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'mstyle')
  b.setAttribute('scriptlevel', '+2147483645')
  a.appendChild(b)
  document.documentElement.appendChild(a)
})
</script>