forked from Raynos/mercury-perf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (42 loc) · 1.42 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>TodoMVC Benchmark</title>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="resources/benchmark-runner.js" defer></script>
<script src="resources/tests.js" defer></script>
<style>
body {
font-family: 'Lucida Grande','Trebuchet MS','Bitstream Vera Sans',Verdana,Helvetica,sans-serif;
background-color: rgb(253, 253, 253);
}
iframe { border: 1px solid black; }
button { margin: 15px 5px; }
ol { list-style: none; margin: 5px 0; padding: 0; }
ol ol { margin-left: 2em; list-position: outside; }
.running { text-decoration: underline; }
.ran { color: grey; }
nav { position: absolute; right: 10px; }
</style>
</head>
<body>
<div id="analysis" style="float:left; display: none;">
<div id="barchart_values"></div>
<div style="width: 400px; margin: 30px;">
<p>Notice that Om, Mercury, and Elm consistently do really well
compared to the other entries.
</p>
<p>All three of these projects are based on the Virtual DOM
approach and make heavy use of <b>immutability</b> to get these
speed gains.
</p>
<p>Read more about this <a href="http://elm-lang.org/blog/Blazing-Fast-Html.elm">here</a>.
</p>
<p>And <a href="https://github.com/evancz/todomvc-perf-comparison/">here</a>
is the code used for these tests.
</p>
</div>
</div>
<script src="resources/manager.js"></script>
</body>
</html>