diff options
author | wout <wout@impinc.co.uk> | 2016-08-04 18:33:26 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2016-08-04 18:33:26 +0200 |
commit | 7b1055707ca2eb2302049e178f5fa8e927baf0b1 (patch) | |
tree | b57740a5bc11e06db2081580010b5512f5c38054 /bench/runner.html | |
parent | ef0ceb27ee424d659ee4febac4acad2b41c4bfcc (diff) | |
download | svg.js-7b1055707ca2eb2302049e178f5fa8e927baf0b1.tar.gz svg.js-7b1055707ca2eb2302049e178f5fa8e927baf0b1.zip |
Added native testcases for benchmarking system
Diffstat (limited to 'bench/runner.html')
-rw-r--r-- | bench/runner.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bench/runner.html b/bench/runner.html index 0ede94f..4c40208 100644 --- a/bench/runner.html +++ b/bench/runner.html @@ -7,15 +7,18 @@ font-family: 'Helvetica Light', Helvetica, sans-serif; font-weight: 300; } - #draw { + svg { width: 2px; height: 2px; overflow: hidden; + position: fixed; + right: 0; } </style> </head> <body> <div id="draw"></div> + <svg id="native" width="100" height="1000" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"></svg> <script src="../dist/svg.js"></script> <script src="svg.bench.js"></script> <script src="tests/element-creation.js"></script> |