| 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 <style> | 10 <style> |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 document.getElementById("version").innerHTML = version; | 133 document.getElementById("version").innerHTML = version; |
| 134 ShowWarningIfObsolete(); | 134 ShowWarningIfObsolete(); |
| 135 window.setTimeout(Run, 200); | 135 window.setTimeout(Run, 200); |
| 136 } | 136 } |
| 137 </script> | 137 </script> |
| 138 </head> | 138 </head> |
| 139 <body onLoad="Load()"> | 139 <body onLoad="Load()"> |
| 140 <div> | 140 <div> |
| 141 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> | 141 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> |
| 142 <div class="warning" id="obsolete"> | 142 <div class="warning" id="obsolete"> |
| 143 Warning! This is not the latest version of V8 benchmark | 143 Warning! This is not the latest version of the V8 benchmark |
| 144 suite. Consider running the | 144 suite. Consider running the |
| 145 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> | 145 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> |
| 146 latest version</a>. | 146 latest version</a>. |
| 147 </div> | 147 </div> |
| 148 | 148 |
| 149 <table> | 149 <table> |
| 150 <tr> | 150 <tr> |
| 151 <td class="contents"> | 151 <td class="contents"> |
| 152 This page contains a suite of pure JavaScript benchmarks that we have | 152 This page contains a suite of pure JavaScript benchmarks that we have |
| 153 used to tune V8. The final score is computed as the geometric mean of | 153 used to tune V8. The final score is computed as the geometric mean of |
| (...skipping 15 matching lines...) Expand all Loading... |
| 169 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%;
font-weight: bold;">Starting...</div> | 169 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%;
font-weight: bold;">Starting...</div> |
| 170 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> | 170 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> |
| 171 <div> | 171 <div> |
| 172 </div> | 172 </div> |
| 173 </td></tr></table> | 173 </td></tr></table> |
| 174 | 174 |
| 175 </div> | 175 </div> |
| 176 | 176 |
| 177 </body> | 177 </body> |
| 178 </html> | 178 </html> |
| OLD | NEW |