blob: 4c4020855eabc260b41077b410ee06eb88954e59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html>
<head>
<title>SVG.js benchmarker</title>
<style>
body {
font-family: 'Helvetica Light', Helvetica, sans-serif;
font-weight: 300;
}
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>
<script>
SVG.bench.run()
</script>
</body>
</html>
|