2011-02-02 Eric Seidel <eric@webkit.org>
authoreric@webkit.org <eric@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 3 Feb 2011 00:55:45 +0000 (00:55 +0000)
committereric@webkit.org <eric@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 3 Feb 2011 00:55:45 +0000 (00:55 +0000)
        Unreviewed.  Just fixing an exception seen in Firefox.

        HTML5 TreeBuilder regressed a Peacekeeper DOM test by 40%
        https://bugs.webkit.org/show_bug.cgi?id=48719

        Make the benchmarks work in Firefox/Opera.

        * resources/runner.js:
        (log):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77436 268f45cc-cd09-0410-ab3c-d52691b4dbfc

PerformanceTests/Parser/ChangeLog
PerformanceTests/Parser/resources/runner.js

index 48d5eae..4ed32c7 100644 (file)
@@ -1,3 +1,15 @@
+2011-02-02  Eric Seidel  <eric@webkit.org>
+
+        Unreviewed.  Just fixing an exception seen in Firefox.
+
+        HTML5 TreeBuilder regressed a Peacekeeper DOM test by 40%
+        https://bugs.webkit.org/show_bug.cgi?id=48719
+
+        Make the benchmarks work in Firefox/Opera.
+
+        * resources/runner.js:
+        (log):
+
 2011-01-27  Eric Seidel  <eric@webkit.org>
 
         Reviewed by Darin Adler.
index 4baa497..3fc0b4f 100644 (file)
@@ -1,6 +1,6 @@
 function log(text) {
-    document.getElementById("log").innerText += text + "\n";
-    window.scrollTo(document.body.height);
+    document.getElementById("log").innerHTML += text + "\n";
+    window.scrollTo(0, document.body.height);
 }
 
 function loadFile(path) {