summaryrefslogtreecommitdiffstats
path: root/dom/svg/crashtests/367357-1.xhtml
blob: 207e2daee32addfba60c802b7c80ec151dc34af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<script>
function boom()
{
  document.getElementById("path").pathSegList.pathSegTypeAsLetter;
}
</script>

</head>

<body onload="boom()">

  <svg xmlns="http://www.w3.org/2000/svg" height="400px" width="400px">
    <path id="path" style="stroke: blue" d="M 200.50000,387.89713 L 201.19970,12.500000" />
  </svg>

</body>
</html>