summaryrefslogtreecommitdiffstats
path: root/dom/svg/crashtests/369249-1.svg
blob: 64d55869b1fe71d5f4056ad91c7df6594d4876c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<svg width='100%' height='100%' 
  xmlns='http://www.w3.org/2000/svg' 
  xmlns:html="http://www.w3.org/1999/xhtml"
  onload='boom()'>
  
<html:script>
  
function boom()
{
  try {
    document.getElementById("path").pathSegList.getItem(-10000000);
  } catch(e) {
  }
}

</html:script>

<path id='path' d='M300,25 C320,250 375,150 400,150 S400,340 330,350'/>

</svg>