Skip to content

Commit 230d2a2

Browse files
committed
bump 2.5.3
1 parent 5058ede commit 230d2a2

File tree

7 files changed

+5502
-5502
lines changed

7 files changed

+5502
-5502
lines changed

bench/tests/10000-circles.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SVG.bench.describe('Generate 10000 circles', function(bench) {
2-
bench.test('using SVG.js v2.5.2', function() {
2+
bench.test('using SVG.js v2.5.3', function() {
33
for (var i = 0; i < 10000; i++)
44
bench.draw.circle(100,100)
55
})
@@ -18,7 +18,7 @@ SVG.bench.describe('Generate 10000 circles', function(bench) {
1818
})
1919

2020
SVG.bench.describe('Generate 10000 circles with fill', function(bench) {
21-
bench.test('using SVG.js v2.5.2', function() {
21+
bench.test('using SVG.js v2.5.3', function() {
2222
for (var i = 0; i < 10000; i++)
2323
bench.draw.circle(100,100).fill('#f06')
2424
})

bench/tests/10000-pathArrays.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bench/tests/10000-paths.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SVG.bench.describe('Generate 10000 paths', function(bench) {
22
var data = 'M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100'
33

4-
bench.test('using SVG.js v2.5.2', function() {
4+
bench.test('using SVG.js v2.5.3', function() {
55
for (var i = 0; i < 10000; i++)
66
bench.draw.path(data)
77
})

bench/tests/10000-rects.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SVG.bench.describe('Generate 10000 rects', function(bench) {
2-
bench.test('using SVG.js v2.5.2', function() {
2+
bench.test('using SVG.js v2.5.3', function() {
33
for (var i = 0; i < 10000; i++)
44
bench.draw.rect(100,100)
55
})
@@ -19,7 +19,7 @@ SVG.bench.describe('Generate 10000 rects', function(bench) {
1919

2020

2121
SVG.bench.describe('Generate 10000 rects with fill', function(bench) {
22-
bench.test('using SVG.js v2.5.2', function() {
22+
bench.test('using SVG.js v2.5.3', function() {
2323
for (var i = 0; i < 10000; i++)
2424
bench.draw.rect(100,100).fill('#f06')
2525
})
@@ -40,7 +40,7 @@ SVG.bench.describe('Generate 10000 rects with fill', function(bench) {
4040

4141

4242
SVG.bench.describe('Generate 10000 rects with position and fill', function(bench) {
43-
bench.test('using SVG.js v2.5.2', function() {
43+
bench.test('using SVG.js v2.5.3', function() {
4444
for (var i = 0; i < 10000; i++)
4545
bench.draw.rect(100,100).move(50,50).fill('#f06')
4646
})
@@ -63,7 +63,7 @@ SVG.bench.describe('Generate 10000 rects with position and fill', function(bench
6363

6464

6565
SVG.bench.describe('Generate 10000 rects with gradient fill', function(bench) {
66-
bench.test('using SVG.js v2.5.2', function() {
66+
bench.test('using SVG.js v2.5.3', function() {
6767
for (var i = 0; i < 10000; i++) {
6868
var g = bench.draw.gradient('linear', function(stop) {
6969
stop.at(0, '#000')

0 commit comments

Comments
 (0)