diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-27 01:00:51 +0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-27 01:01:46 +0200 |
commit | e381a5fb6d30c39045293245c43002f691800d80 (patch) | |
tree | 1850d576b88d527ac720b448e4d205832a94786e /spec/fixtures | |
parent | 9ec3a403b6c638bffc04e1ce00ebdf016aa15492 (diff) | |
download | svg.js-e381a5fb6d30c39045293245c43002f691800d80.tar.gz svg.js-e381a5fb6d30c39045293245c43002f691800d80.zip |
move fixtures to the fixtures folder
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/fixture.css | 6 | ||||
-rw-r--r-- | spec/fixtures/fixture.svg | 29 |
2 files changed, 35 insertions, 0 deletions
diff --git a/spec/fixtures/fixture.css b/spec/fixtures/fixture.css new file mode 100644 index 0000000..e72e421 --- /dev/null +++ b/spec/fixtures/fixture.css @@ -0,0 +1,6 @@ +#drawing { + width: 500px; + height: 500px; + position: fixed; + z-index: -1; +}
\ No newline at end of file diff --git a/spec/fixtures/fixture.svg b/spec/fixtures/fixture.svg new file mode 100644 index 0000000..f910dc1 --- /dev/null +++ b/spec/fixtures/fixture.svg @@ -0,0 +1,29 @@ +<svg height="0" width="0" id="inlineSVG"> + <defs> + <linearGradient> + <stop offset="5%" stop-color="green"/> + <stop offset="95%" stop-color="gold"/> + </linearGradient> + <radialGradient> + <stop offset="10%" stop-color="gold"/> + <stop offset="95%" stop-color="green"/> + </radialGradient> + </defs> + <desc>Some description</desc> + <path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" /> + <path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" /> + <path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" /> + <path d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" /> + <g stroke="black" stroke-width="3" fill="black" id="pointGroup"> + <circle id="pointA" cx="100" cy="350" r="3" /> + <circle id="pointB" cx="250" cy="50" r="3" /> + <circle id="pointC" cx="400" cy="350" r="3" /> + </g> + <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle" id="labelGroup"> + <text x="100" y="350" dx="-30">A</text> + <text x="250" y="50" dy="-10">B</text> + <text x="400" y="350" dx="30">C</text> + </g> + <polygon points="200,10 250,190 160,210" /> + <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" /> +</svg>
\ No newline at end of file |