summaryrefslogtreecommitdiffstats
path: root/dom/smil/crashtests/1535388-1.html
blob: cdfaba4d90261007f3fd5aa5dcda1314e103ab7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<script>
function start () {
  document.location.assign('abc')
  SpecialPowers.forceGC()
  SpecialPowers.forceCC()
  const XHR = new XMLHttpRequest()
  XHR.open('GET', 'data:text/html,1', false)
  XHR.send()
}
window.addEventListener('load', start)
</script>
</head>
<body>
<svg></svg>
</body>
</html>