| 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 <link type="text/css" rel="stylesheet" href="style.css"></link> | 10 <link type="text/css" rel="stylesheet" href="style.css"></link> |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 document.getElementById("version").innerHTML = version; | 78 document.getElementById("version").innerHTML = version; |
| 79 ShowWarningIfObsolete(); | 79 ShowWarningIfObsolete(); |
| 80 window.setTimeout(Run, 200); | 80 window.setTimeout(Run, 200); |
| 81 } | 81 } |
| 82 </script> | 82 </script> |
| 83 </head> | 83 </head> |
| 84 <body onLoad="Load()"> | 84 <body onLoad="Load()"> |
| 85 <div> | 85 <div> |
| 86 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> | 86 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span
></h1></div> |
| 87 <div class="warning" id="obsolete"> | 87 <div class="warning" id="obsolete"> |
| 88 Warning! This is not the latest version of V8 benchmark | 88 Warning! This is not the latest version of the V8 benchmark |
| 89 suite. Consider running the | 89 suite. Consider running the |
| 90 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> | 90 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html"> |
| 91 latest version</a>. | 91 latest version</a>. |
| 92 </div> | 92 </div> |
| 93 <table> | 93 <table> |
| 94 <tr> | 94 <tr> |
| 95 <td class="contents"> | 95 <td class="contents"> |
| 96 This page contains a suite of pure JavaScript benchmarks that we have | 96 This page contains a suite of pure JavaScript benchmarks that we have |
| 97 used to tune V8. The final score is computed as the geometric mean of | 97 used to tune V8. The final score is computed as the geometric mean of |
| 98 the individual results to make it independent of the running times of | 98 the individual results to make it independent of the running times of |
| (...skipping 22 matching lines...) Expand all Loading... |
| 121 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%;
font-weight: bold;">Starting...</div> | 121 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%;
font-weight: bold;">Starting...</div> |
| 122 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> | 122 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> |
| 123 <div> | 123 <div> |
| 124 </div> | 124 </div> |
| 125 </td></tr></table> | 125 </td></tr></table> |
| 126 | 126 |
| 127 </div> | 127 </div> |
| 128 | 128 |
| 129 </body> | 129 </body> |
| 130 </html> | 130 </html> |
| OLD | NEW |