]> source.dussan.org Git - svg.js.git/commitdiff
fix leading/trailing space test case
authordotnetCarpenter <jon.ronnenberg@gmail.com>
Thu, 20 Oct 2016 18:56:24 +0000 (16:56 -0200)
committerdotnetCarpenter <jon.ronnenberg@gmail.com>
Thu, 20 Oct 2016 19:45:17 +0000 (17:45 -0200)
odd number of points is invalid in SVG
See https://svgwg.org/svg2-draft/shapes.html#DataTypePoints

dist/svg.js
spec/spec/array.js

index 9abd09e5affad3213dc7af5ba3826fc8034794f8..864b07280bb210cd6a9215cfb1c1d18ca5fa37c1 100644 (file)
@@ -6,7 +6,7 @@
 * @copyright Wout Fierens <wout@woutfierens.com>
 * @license MIT
 *
-* BUILT: Thu Oct 20 2016 16:47:32 GMT-0200 (WGST)
+* BUILT: Thu Oct 20 2016 16:53:19 GMT-0200 (WGST)
 */;
 (function(root, factory) {
   if (typeof define === 'function' && define.amd) {
index 5b951a95e4705d555c55288eea9e8f1da8fb0e2f..1671ce80ed1419e3e62daa88e427d0fcd3f8a36a 100644 (file)
@@ -43,10 +43,10 @@ describe('PointArray', function () {
 
     expect(array + '').toBe('2176.6,1708.8 2176.4,1755.8 2245.8,1801.5 2297,1787.8')
   })
-  it('parses points with space delimitered x/y coordinates', function() {
-    var array = new SVG.PointArray('  1 2 3  ')
+  it('parses points with space delimitered x/y coordinates - even with leading or trailing space', function() {
+    var array = new SVG.PointArray('  1 2 3  ')
 
-    expect(array + '').toBe('1,2,3')
+    expect(array + '').toBe('1,2,3,4')
   })
 })