From: lrn@chromium.org Date: Wed, 24 Jun 2009 10:10:49 +0000 (+0000) Subject: Changed benchmark html and css files to be almost validating HTML 4.01 and CSS. X-Git-Tag: upstream/4.7.83~23827 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54e4562e7d694ec584d223c6cf65176a6443b553;p=platform%2Fupstream%2Fv8.git Changed benchmark html and css files to be almost validating HTML 4.01 and CSS. Review URL: http://codereview.chromium.org/146076 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2259 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/benchmarks/run.html b/benchmarks/run.html old mode 100644 new mode 100755 index d406241..050764e --- a/benchmarks/run.html +++ b/benchmarks/run.html @@ -1,5 +1,10 @@ - + + + + + V8 Benchmark Suite @@ -25,12 +30,12 @@ function ShowProgress(name) { function AddResult(name, result) { var text = name + ': ' + result; var results = document.getElementById("results"); - results.innerHTML += (text + "
"); + results.innerHTML += (text + "
"); } function AddError(name, error) { - AddResult(name, 'error'); + AddResult(name, 'error<\/b>'); success = false; } @@ -53,11 +58,11 @@ function Run() { function Load() { var version = BenchmarkSuite.version; document.getElementById("version").innerHTML = version; - window.setTimeout(Run, 200); + setTimeout(Run, 200); } - +

V8 Benchmark Suite - version ?

@@ -71,15 +76,15 @@ the individual benchmarks and of a reference system (score higher scores means better performance: Bigger is better!
    -
  • Richards
    OS kernel simulation benchmark, originally written in BCPL by Martin Richards (539 lines).
  • -
  • DeltaBlue
    One-way constraint solver, originally written in Smalltalk by John Maloney and Mario Wolczko (880 lines).
  • -
  • Crypto
    Encryption and decryption benchmark based on code by Tom Wu (1698 lines).
  • -
  • RayTrace
    Ray tracer benchmark based on code by Adam Burmister (935 lines).
  • -
  • EarleyBoyer
    Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (4685 lines).
  • -
  • RegExp
    Regular expression benchmark generated by extracting regular expression operations from 50 of the most popular web pages +
  • Richards
    OS kernel simulation benchmark, originally written in BCPL by Martin Richards (539 lines).
  • +
  • DeltaBlue
    One-way constraint solver, originally written in Smalltalk by John Maloney and Mario Wolczko (880 lines).
  • +
  • Crypto
    Encryption and decryption benchmark based on code by Tom Wu (1698 lines).
  • +
  • RayTrace
    Ray tracer benchmark based on code by Adam Burmister (935 lines).
  • +
  • EarleyBoyer
    Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (4685 lines).
  • +
  • RegExp
    Regular expression benchmark generated by extracting regular expression operations from 50 of the most popular web pages (1614 lines).
  • -
  • Splay
    Data manipulation benchmark that deals with splay trees and exercises the automatic memory management subsystem (378 lines).
  • +
  • Splay
    Data manipulation benchmark that deals with splay trees and exercises the automatic memory management subsystem (378 lines).

@@ -92,9 +97,9 @@ the

diff --git a/benchmarks/style.css b/benchmarks/style.css old mode 100644 new mode 100755 index d976cdd..46320c1 --- a/benchmarks/style.css +++ b/benchmarks/style.css @@ -1,11 +1,7 @@ -body { - font-family: sans-serif; -} - -hr{ +hr { border: 1px solid; border-color: #36C; - margin: 1em 0 + margin: 1em 0; } h1, h2, h3, h4 { @@ -14,27 +10,17 @@ h1, h2, h3, h4 { } h1 { - font-size: 190%; - height: 1.2em; -} - - -h2{ - font-size: 140%; + font-size: 154%; height: 1.2em; } -h3{ - font-size: 100%; -} -li{ +li { margin: .3em 0 1em 0; } -body{ +body { font-family: Helvetica,Arial,sans-serif; - font-size: small; color: #000; background-color: #fff; } @@ -54,7 +40,7 @@ div.subtitle { } td.contents { - text-align: start; + text-align: left; } div.run { @@ -68,3 +54,15 @@ div.run { background-repeat: no-repeat; border: 1px solid rgb(51, 102, 204); } + +#status { + text-align: center; + margin-top: 50px; + font-size: 120%; + font-weight: bold; +} + +#results { + text-align: left; + margin: 30px 0 0 90px; +}