| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>V8 Benchmark Suite</title> | 3 <title>V8 Benchmark Suite</title> |
| 4 <script type="text/javascript" src="base.js"></script> | 4 <script type="text/javascript" src="base.js"></script> |
| 5 <script type="text/javascript" src="richards.js"></script> | 5 <script type="text/javascript" src="richards.js"></script> |
| 6 <script type="text/javascript" src="deltablue.js"></script> | 6 <script type="text/javascript" src="deltablue.js"></script> |
| 7 <script type="text/javascript" src="crypto.js"></script> | 7 <script type="text/javascript" src="crypto.js"></script> |
| 8 <script type="text/javascript" src="raytrace.js"></script> | 8 <script type="text/javascript" src="raytrace.js"></script> |
| 9 <script type="text/javascript" src="earley-boyer.js"></script> | 9 <script type="text/javascript" src="earley-boyer.js"></script> |
| 10 <script type="text/javascript" src="regexp.js"></script> | 10 <script type="text/javascript" src="regexp.js"></script> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 document.getElementById("version").innerHTML = version; | 80 document.getElementById("version").innerHTML = version; |
| 81 ShowWarningIfObsolete(); | 81 ShowWarningIfObsolete(); |
| 82 window.setTimeout(Run, 200); | 82 window.setTimeout(Run, 200); |
| 83 } | 83 } |
| 84 </script> | 84 </script> |
| 85 </head> | 85 </head> |
| 86 <body onLoad="Load()"> | 86 <body onLoad="Load()"> |
| 87 <div> | 87 <div> |
| 88 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> | 88 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> |
| 89 <div class="warning" id="obsolete"> | 89 <div class="warning" id="obsolete"> |
| 90 Warning! This is not the latest version of V8 benchmark | 90 Warning! This is not the latest version of the V8 benchmark |
| 91 suite. Consider running the | 91 suite. Consider running the |
| 92 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> | 92 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> |
| 93 latest version</a>. | 93 latest version</a>. |
| 94 </div> | 94 </div> |
| 95 <table> | 95 <table> |
| 96 <tr> | 96 <tr> |
| 97 <td class="contents"> | 97 <td class="contents"> |
| 98 This page contains a suite of pure JavaScript benchmarks that we have | 98 This page contains a suite of pure JavaScript benchmarks that we have |
| 99 used to tune V8. The final score is computed as the geometric mean of | 99 used to tune V8. The final score is computed as the geometric mean of |
| 100 the individual results to make it independent of the running times of | 100 the individual results to make it independent of the running times of |
| (...skipping 26 matching lines...) Expand all Loading... |
| 127 <div id="status" style="text-align: center; margin-top: 50px; font-size: 120%;
font-weight: bold;">Starting...</div> | 127 <div id="status" style="text-align: center; margin-top: 50px; font-size: 120%;
font-weight: bold;">Starting...</div> |
| 128 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> | 128 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> |
| 129 <div> | 129 <div> |
| 130 </div> | 130 </div> |
| 131 </td></tr></table> | 131 </td></tr></table> |
| 132 | 132 |
| 133 </div> | 133 </div> |
| 134 | 134 |
| 135 </body> | 135 </body> |
| 136 </html> | 136 </html> |
| OLD | NEW |