2010-03-29 20:18:54 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>PEG.js Benchmark Suite</title>
|
2011-09-14 20:16:25 +02:00
|
|
|
<link rel="stylesheet" href="index.css">
|
2010-03-29 20:18:54 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>PEG.js Benchmark Suite</h1>
|
|
|
|
|
2010-07-21 22:38:44 +02:00
|
|
|
<div id="options">
|
|
|
|
<label for="run-count">Run each test</label>
|
|
|
|
<input type="text" id="run-count" value="10"> times
|
|
|
|
<input type="button" id="run" value="Run">
|
|
|
|
</div>
|
|
|
|
|
2010-03-29 20:18:54 +02:00
|
|
|
<table id="results-table">
|
|
|
|
<tr class="columns">
|
|
|
|
<th>Test</th>
|
|
|
|
<th>Input Size</th>
|
|
|
|
<th>Average Parse Time</th>
|
|
|
|
<th>Average Parse Speed</th>
|
|
|
|
</tr>
|
2010-07-21 22:38:44 +02:00
|
|
|
<tr>
|
|
|
|
<td class="no-results" colspan="4">No results available yet.</td>
|
|
|
|
</tr>
|
2010-03-29 20:18:54 +02:00
|
|
|
</table>
|
|
|
|
|
2010-07-25 17:54:09 +02:00
|
|
|
<script src="../lib/peg.js"></script>
|
2010-08-15 19:50:59 +02:00
|
|
|
<script src="vendor/jquery/jquery.js"></script>
|
|
|
|
<script src="vendor/jquery.scrollto/jquery.scrollTo.js"></script>
|
2011-01-26 10:18:56 +01:00
|
|
|
<script src="benchmarks.js"></script>
|
|
|
|
<script src="runner.js"></script>
|
2011-09-14 20:16:25 +02:00
|
|
|
<script src="index.js"></script>
|
2010-03-29 20:18:54 +02:00
|
|
|
</body>
|
|
|
|
</html>
|