diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-11 18:57:32 +0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-04-11 18:57:32 +0200 |
commit | ae7b087db03e330bef21f026a652759d9bd7f57e (patch) | |
tree | 4b00fcba1713a691e3299a0089f227a5835597bc /bench/tests/10000-rects.js | |
parent | 117b7fbe8db0bbbda7fc7c951d7d83005e1a669b (diff) | |
download | svg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.tar.gz svg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.zip |
change benchmark svg.js identifier to 2.5.2
Diffstat (limited to 'bench/tests/10000-rects.js')
-rw-r--r-- | bench/tests/10000-rects.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/tests/10000-rects.js b/bench/tests/10000-rects.js index 4fa6b29..15fc94c 100644 --- a/bench/tests/10000-rects.js +++ b/bench/tests/10000-rects.js @@ -1,5 +1,5 @@ SVG.bench.describe('Generate 10000 rects', function(bench) { - bench.test('using SVG.js v2.5.1', function() { + bench.test('using SVG.js v2.5.2', function() { for (var i = 0; i < 10000; i++) bench.draw.rect(100,100) }) @@ -19,7 +19,7 @@ SVG.bench.describe('Generate 10000 rects', function(bench) { SVG.bench.describe('Generate 10000 rects with fill', function(bench) { - bench.test('using SVG.js v2.5.1', function() { + bench.test('using SVG.js v2.5.2', function() { for (var i = 0; i < 10000; i++) bench.draw.rect(100,100).fill('#f06') }) @@ -40,7 +40,7 @@ SVG.bench.describe('Generate 10000 rects with fill', function(bench) { SVG.bench.describe('Generate 10000 rects with position and fill', function(bench) { - bench.test('using SVG.js v2.5.1', function() { + bench.test('using SVG.js v2.5.2', function() { for (var i = 0; i < 10000; i++) bench.draw.rect(100,100).move(50,50).fill('#f06') }) @@ -63,7 +63,7 @@ SVG.bench.describe('Generate 10000 rects with position and fill', function(bench SVG.bench.describe('Generate 10000 rects with gradient fill', function(bench) { - bench.test('using SVG.js v2.5.1', function() { + bench.test('using SVG.js v2.5.2', function() { for (var i = 0; i < 10000; i++) { var g = bench.draw.gradient('linear', function(stop) { stop.at(0, '#000') |