| <html> |
| <head> |
| <title>ES6 Sample Bench</title> |
| <link rel="stylesheet" type="text/css" href="style.css"> |
| </head> |
| <script> |
| window.onerror = function(message, url, lineNumber) |
| { |
| document.getElementById("trigger").innerHTML = "ERROR: " + url + ":" + lineNumber + ": " + message; |
| } |
| |
| const isInBrowser = true; |
| </script> |
| <script src="driver.js"></script> |
| <script src="results.js"></script> |
| <script src="stats.js"></script> |
| <body> |
| <div id="contents"> |
| <h1>ES6 Sample Bench</h1> |
| <p>This is a benchmark suite that consists of ES6 sample code written by the |
| <a href="http://www.webkit.org/">WebKit</a> team. All results are in milliseconds with 95% |
| confidence intervals. Lower is better.</p> |
| <p id="trigger"><a href="javascript:driver.start(10)">Start Benchmark</a></p> |
| <p><b>Geometric Mean Result: <span id="Geomean">...</span></b></p> |
| <table cellspacing=0 cellpadding=0 border=0> |
| <tr> |
| <th width=180>Benchmark</th> |
| <th width=180>First Iteration</th> |
| <th width=180>Worst 2%</th> |
| <th width=180>Steady State</th> |
| <tr> |
| <th>Air</th> |
| <td id="AirFirstIteration">...</td> |
| <td id="AirAverageWorstCase">...</td> |
| <td id="AirSteadyState">...</td> |
| <td id="AirMessage"></td> |
| </tr> |
| <tr> |
| <th>Basic</th> |
| <td id="BasicFirstIteration">...</td> |
| <td id="BasicAverageWorstCase">...</td> |
| <td id="BasicSteadyState">...</td> |
| <td id="BasicMessage"></td> |
| </tr> |
| </table> |
| </div> |
| <iframe id="magic" frameBorder=0></iframe> |
| <script src="air_benchmark.js"></script> |
| <script src="basic_benchmark.js"></script> |
| <script src="glue.js"></script> |
| </body> |
| </html> |