summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/1322537-2.html
blob: d0495d79af5d09b5bc88a980a17d3d485516dd40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<head>
  <script>
    function go() {
      var path = document.getElementById("myPath");
      var len = path.getTotalLength();
      console.log(len);
    }
  </script>
</head>
<body onload="go()">
  <svg>
    <path id="myPath" d="M45,-17592186044414A71,23 46,0,0 16382,98"/>
  </svg>
</body>