My honours project this year requires the use of graphical browser technologies to produce a modern network weather map.
I have used SVG and HTML5 canvas in the past and have had mixed performance experiences with them. Over summer I had to make use of SVG to draw a traceroute tree-map which in practice performed a lot quicker running on Google Chrome opposed to Firefox.
I wanted to get a clear picture of the current position that both of these technologies are at in terms of performance for drawing and translating large numbers of nodes.
A quick search around the internet showed a handful of existing tests, but I thought I would give it a go to for the practice.
My testing platforms were:
PC
Windows 7
Intel Core 2 Quad 2.6GHZ
4GB Ram
Mac Book Pro
Mac OS Snow Leopard 10.6.7
Intel i5 2.3 GHz dual core
8GB Ram
I tested the following browsers:
- Chrome 10.0.648.204
- Firefox 3.3.16 (I didn’t test FF4.0 but I hear performance is not a lot better)
- Safari 5.0.4
Test Setup / Method
I wrote a simple script that creates/draws a given number of nodes using either ‘svg’ or ‘canvas’. The nodes are then translated as many times as possible per second.
The framerate is calculated by incrementing a counter ever time all of the nodes have been redraw(canvas)/translated(svg) and then outputting its value after each second via a setInterval function.
function draw() {
if (diffTime >= 1000) {
fps = frameCount;
frameCount = 0.0;
lastTime = nowTime;
// draw the 'fps' to the window
}
// draw some magical particles
frameCount++;
}
See the full code here: https://github.com/oughton/Drawing-Browser-Benchmark
There are disadvantages/naiveness to this method. I am only testing translation performance of SVG and redrawing performance of canvas. Event support in SVG is a given and is quick due to DOM nodes existing for each node that is drawn. Canvas requires an event system to be built around the application to get the same event support.
But, nonetheless it gives a good overview of where browsers are at.
Results
I took a serious of measurements at various different numbers of particles and recorded the framerate at that value. This produced a big table of numbers but I will just summaries those in 2 pretty graphs.


These results show Chrome as a clear winner for bothCanvas and SVG performance on my windows 7 pc. The SVG performance on both pc and mac degrades significantly as the number of nodes increase across all of the browsers I tested. Chrome and Safari maintained a somewhat usable performance for SVG around the 1000 node mark where as Firefox began locking up.
Another interesting point is Safaris apparent 90 frames / second limit for canvas. While it did not go over 90 frames /second on my mac, it remained mostly constant over the 2000 particles tested.
From these results it appears that reasonable SVG performance is currently possible, but if you are needing thousands of nodes in your visualization, I would stick with Canvas and implement a basic event system.
** UPDATE **
It was requested that I show results for IE 9 due to the addition of hardware rendering support. I actually did these tests before handing in my final project so it is easy to include the new graph here.

The graph shows that IE 9 canvas rendering speed outperforms all other browsers. IE 9 SVG performance still shows the same rapid decline as the number of particles increase.