aboutsummaryrefslogtreecommitdiffstats
path: root/bench/tests/element-creation.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/tests/element-creation.js')
-rw-r--r--bench/tests/element-creation.js44
1 files changed, 38 insertions, 6 deletions
diff --git a/bench/tests/element-creation.js b/bench/tests/element-creation.js
index 6e35a08..107c353 100644
--- a/bench/tests/element-creation.js
+++ b/bench/tests/element-creation.js
@@ -1,18 +1,50 @@
-;(function(bench) {
-
- bench.test('generate 10000 rects', function() {
+(function(bench) {
+ var svgns = 'http://www.w3.org/2000/svg'
+
+ bench.test('svg.js: generate 10000 rects', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100)
})
- bench.test('generate 10000 rects with fill', function() {
+ bench.test('native: generate 10000 rects', function() {
+ for (var i = 0; i < 10000; i++) {
+ var rect = document.createElementNS(svgns, 'rect')
+ rect.setAttributeNS(null, 'height', 100)
+ rect.setAttributeNS(null, 'width', 100)
+ bench.raw.appendChild(rect)
+ }
+ })
+
+ bench.test('svg.js: generate 10000 rects with fill', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100).fill('#f06')
})
- bench.test('generate 10000 rects with position and fill', function() {
+ bench.test('native: generate 10000 rects with fill', function() {
+ for (var i = 0; i < 10000; i++) {
+ var rect = document.createElementNS(svgns, 'rect')
+ rect.setAttributeNS(null, 'height', 100)
+ rect.setAttributeNS(null, 'width', 100)
+ rect.setAttributeNS(null, 'fill', '#f06')
+ bench.raw.appendChild(rect)
+ }
+ })
+
+ bench.test('svg.js: generate 10000 rects with position and fill', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100).move(50,50).fill('#f06')
})
-})(SVG.bench); \ No newline at end of file
+ bench.test('native: generate 10000 rects with position and fill', function() {
+ for (var i = 0; i < 10000; i++) {
+ var rect = document.createElementNS(svgns, 'rect')
+ rect.setAttributeNS(null, 'height', 100)
+ rect.setAttributeNS(null, 'width', 100)
+ rect.setAttributeNS(null, 'fill', '#f06')
+ rect.setAttributeNS(null, 'x', 50)
+ rect.setAttributeNS(null, 'y', 50)
+ bench.raw.appendChild(rect)
+ }
+ })
+
+})(SVG.bench) \ No newline at end of file