Mikhail, You're changing the benchmarks in the wrong place. Please change it on the bleeding_edge branch and we'll push it out to the data/benchmarks directory later.
Cheers, Kasper On Tue, Jun 23, 2009 at 9:35 AM, <[email protected]> wrote: > > Reviewers: Kasper Lund, > > Description: > Make <link> tag self-closing. > > According to the reference site w3schools, <link> tag must be > self-closing, instead of having </link> pair. See > http://www.w3schools.com/tags/tag_link.asp > > > Please review this at http://codereview.chromium.org/147007 > > SVN Base: http://v8.googlecode.com/svn/data/benchmarks/ > > Affected files: > M v4/run.html > > > Index: v4/run.html > =================================================================== > --- v4/run.html (revision 2247) > +++ v4/run.html (working copy) > @@ -9,7 +9,7 @@ > <script type="text/javascript" src="earley-boyer.js"></script> > <script type="text/javascript" src="regexp.js"></script> > <script type="text/javascript" src="splay.js"></script> > -<link type="text/css" rel="stylesheet" href="style.css"></link> > +<link type="text/css" rel="stylesheet" href="style.css" /> > <script type="text/javascript"> > var completed = 0; > var benchmarks = BenchmarkSuite.CountBenchmarks(); > @@ -25,7 +25,7 @@ > function AddResult(name, result) { > var text = name + ': ' + result; > var results = document.getElementById("results"); > - results.innerHTML += (text + "<br/>"); > + results.innerHTML += (text + "<br/>"); > } > > > @@ -47,7 +47,7 @@ > BenchmarkSuite.RunSuites({ NotifyStep: ShowProgress, > NotifyError: AddError, > NotifyResult: AddResult, > - NotifyScore: AddScore }); > + NotifyScore: AddScore }); > } > > function Load() { > > > > > > --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
