summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/path-03.svg
blob: f3f8c57df0883c543283ad3cd8683416c738d813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">

  <title>Testcase for invalid path</title>

  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=601699 -->

  <marker id="marker" markerWidth="10" markerHeight="10">
    <circle cx="5" cy="5" r="5"/>
  </marker>

  <rect width="100%" height="100%" fill="lime"/>

  <path id="path" fill="red" marker-mid="url(#marker)"/>

  <script><![CDATA[

// Parser will throw out path without an initial moveto command, so we use
// script to inject one and see what happens.

var path = document.getElementById("path");
var curve = path.createSVGPathSegCurvetoCubicAbs(0, 400, 400, 400, 400, 0);
path.pathSegList.appendItem(curve);

  ]]></script>
</svg>