diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-22 20:31:58 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-22 20:31:58 +0200 |
commit | 408940add58e81e7879098682e94504a8cf3a734 (patch) | |
tree | b7d1a4c2bc659bdafe50097c6a0e9921cbbf9ee1 /bench/tests/10000-pathArrays.js | |
parent | 60d3ad099f3ee1a39b401d12405dba9e4d7e5da2 (diff) | |
parent | 04e21b18c30d546ed6a16b279504a2b58b503541 (diff) | |
download | svg.js-408940add58e81e7879098682e94504a8cf3a734.tar.gz svg.js-408940add58e81e7879098682e94504a8cf3a734.zip |
Merge branch 'master' into 3.0.0
# Conflicts - all resolved:
# dist/svg.js
# dist/svg.min.js
# package.json
# spec/SpecRunner.html
# spec/spec/boxes.js
# spec/spec/element.js
# spec/spec/image.js
# spec/spec/svg.js
# src/boxes.js
# src/flatten.js
# src/image.js
# src/polyfill.js
# src/style.js
# src/svg.js
Diffstat (limited to 'bench/tests/10000-pathArrays.js')
-rw-r--r-- | bench/tests/10000-pathArrays.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/tests/10000-pathArrays.js b/bench/tests/10000-pathArrays.js index fc34e5f..a4c0fdc 100644 --- a/bench/tests/10000-pathArrays.js +++ b/bench/tests/10000-pathArrays.js @@ -5,17 +5,17 @@ SVG.bench.describe('Generate 10000 pathArrays', function(bench) { var data3 = 'M10 10-45-30.5.5 .89L2e-2.5.5.5-.5C.5.5.5.5.5.5L-3-4z' - bench.test('using SVG.js v2.4.0', function() { + bench.test('using SVG.js v2.5.3', function() { for (var i = 0; i < 10000; i++) new SVG.PathArray(data) }) - bench.test('using SVG.js v2.4.0 more data', function() { + bench.test('using SVG.js v2.5.3 more data', function() { for (var i = 0; i < 10000; i++) new SVG.PathArray(data2) }) - bench.test('using SVG.js v2.4.0 complicated data', function() { + bench.test('using SVG.js v2.5.3 complicated data', function() { for (var i = 0; i < 10000; i++) new SVG.PathArray(data3) }) |