diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-17 17:13:50 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-17 17:13:50 +0200 |
commit | 230d2a2fa4ab2d73ddbeb4894b1620dc779d3a96 (patch) | |
tree | 7fc148bd1bb2cb01a1ec83d3d2603c62a08bf7b6 /bench/tests/10000-rects.js | |
parent | 5058edee3b479e23462a7021648f1dfd3e351b2f (diff) | |
download | svg.js-2.5.3.tar.gz svg.js-2.5.3.zip |
bump 2.5.32.5.3
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 15fc94c..aea0c79 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.2', function() { + bench.test('using SVG.js v2.5.3', 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.2', function() { + bench.test('using SVG.js v2.5.3', 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.2', function() { + bench.test('using SVG.js v2.5.3', 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.2', function() { + bench.test('using SVG.js v2.5.3', function() { for (var i = 0; i < 10000; i++) { var g = bench.draw.gradient('linear', function(stop) { stop.at(0, '#000') |