diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-02-24 21:50:07 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-02-24 21:50:07 +0100 |
commit | 9e6a1dd05116d90cc5f1e9683671bd4f68a289fe (patch) | |
tree | d4bf5075e373f844041157816c5ea0a786fe27c9 /spec/SpecRunner.html | |
parent | 5044f8ac2851019a7ce92e5884971d2aec5b306b (diff) | |
download | svg.js-9e6a1dd05116d90cc5f1e9683671bd4f68a289fe.tar.gz svg.js-9e6a1dd05116d90cc5f1e9683671bd4f68a289fe.zip |
added a few missing tests to increase coverage
Diffstat (limited to 'spec/SpecRunner.html')
-rw-r--r-- | spec/SpecRunner.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/SpecRunner.html b/spec/SpecRunner.html index eea498f..3163e04 100644 --- a/spec/SpecRunner.html +++ b/spec/SpecRunner.html @@ -27,6 +27,16 @@ <body> <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" /> @@ -44,6 +54,7 @@ </g> <polygon points="200,10 250,190 160,210" /> <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" /> + </svg> <!-- include spec files here... --> @@ -88,6 +99,7 @@ <script src="spec/viewbox.js"></script> <script src="spec/sugar.js"></script> <script src="spec/fx.js"></script> + <script src="spec/utils.js"></script> <script type="text/javascript" src="spec/helper.js"></script> </body> |