summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/crashtests/firefox-bug-1753105.html
blob: 3105c577beac345c25a432c4a5e0646125b4f78e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<script>
  document.addEventListener("DOMContentLoaded", () => {
    const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg")
    const text = document.createElementNS("http://www.w3.org/2000/svg", "text")
    text.setAttribute("letter-spacing", "-37vw")
    const node = document.createTextNode("\n\n\r7%٠\0ó …§ð†ªã€€&**=ðŸ¯šð¯‚ï¸¡ó ”©Û¹â€Ùªv*/𯄝𖹧垝纶*;{0ð–£”9̆뢻\r\n^掶𩹺*|\r\n🩂٫𐇽뫻e犮㇆᭲𡇂\u2028ᨲ⁤\rv+🧌8שּׁ\nð¯Žè›¥ó „ˆêº¡\n⒝𝱒٠۹𖯸0ó ¤™/ᾂ𫞾99 a&=𝉂۹𯩒゙2ó ¥µ^0ꒋ𝗻𝅻\0X%+0*/镳 ٪ȺXá©¿L2⼤𛪈­𪸏𛝉")
    text.appendChild(node)
    svg.appendChild(text)
    document.documentElement.appendChild(svg)
    const rect = document.documentElement.getBoundingClientRect()
    node.convertRectFromNode(rect, svg, {})
  })
</script>