Initial implementation of results parser

This commit is contained in:
2017-08-18 15:49:57 +02:00
parent ab2fe20c8f
commit 70ae2ff9dd
9 changed files with 17613 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<title>Benchmark Results</title>
<script src="source/chart.bundle.js"></script>
<script src="source/utils.js"></script>
<script src="dataset/latest_snapshot.js"></script>
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<div id="container">
<canvas id="canvas"></canvas>
</div>
<script>
window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
buildChart(ctx, data);
};
</script>
</body>
</html>