Title: [159121] trunk/PerformanceTests
Revision
159121
Author
akl...@apple.com
Date
2013-11-12 10:19:11 -0800 (Tue, 12 Nov 2013)

Log Message

Remove body onload handler from html5-8266.html that was causing
the test to sometimes finish before doing anything interesting.

Unskip Parser/HTML5-8266-FullRender.html now that it's stable.

Rubber-stamped by Antti Koivisto.

* Parser/resources/html5-8266.html:
* Skipped:

Modified Paths

Diff

Modified: trunk/PerformanceTests/ChangeLog (159120 => 159121)


--- trunk/PerformanceTests/ChangeLog	2013-11-12 17:56:37 UTC (rev 159120)
+++ trunk/PerformanceTests/ChangeLog	2013-11-12 18:19:11 UTC (rev 159121)
@@ -1,5 +1,17 @@
 2013-11-12  Andreas Kling  <akl...@apple.com>
 
+        Remove body onload handler from html5-8266.html that was causing
+        the test to sometimes finish before doing anything interesting.
+
+        Unskip Parser/HTML5-8266-FullRender.html now that it's stable.
+
+        Rubber-stamped by Antti Koivisto.
+
+        * Parser/resources/html5-8266.html:
+        * Skipped:
+
+2013-11-12  Andreas Kling  <akl...@apple.com>
+
         Neutralize external resource loads in the new HTML5 spec copy.
 
         Skip Parser/HTML5-8266-FullRender.html until I can make it less flaky.

Modified: trunk/PerformanceTests/Parser/resources/html5-8266.html (159120 => 159121)


--- trunk/PerformanceTests/Parser/resources/html5-8266.html	2013-11-12 17:56:37 UTC (rev 159120)
+++ trunk/PerformanceTests/Parser/resources/html5-8266.html	2013-11-12 18:19:11 UTC (rev 159121)
@@ -597,39 +597,8 @@
   ul.checkboxes { list-style-type: none; }
   </style>
   <!-- END WEBKIT EDITS -->
-  <script>
-   var startedInit = 0;
-   function init() {
-     startedInit = 1;
-     if (location.search == '?slow-browser')
-       return;
-     var configUI = document.createElement('div');
-     configUI.id = 'configUI';
-     document.body.appendChild(configUI);
-     load('reviewer.js');
-     if (document.documentElement.className == "" || document.documentElement.className == "split index")
-       load('toc.js');
-     load('updater.js');
-     load('dfn.js');
-     load('status.js');
-     if (getCookie('profile') == '1')
-       document.getElementsByTagName('h2')[0].textContent += '; load: ' + (new Date() - loadTimer) + 'ms';
-   }
-   if (document.documentElement.className == "")
-     setTimeout(function () {
-       if (!startedInit)
-         showAlert("Too slow? Try reading the multipage copy of the spec instead:", "http://whatwg.org/html");
-     }, 6000);
+  <body>
 
-   window.addEventListener('keypress', function (event) {
-     if ((event.which == 114) && (event.metaKey)) {
-       if (!confirm('Are you sure you want to reload this page?'))
-         event.preventDefault();
-     }
-   }, false);
-
-  </script><body _onload_=init()>
-
   <header class=head id=head><p><a href="" class=logo><img width=101 src="" alt=WHATWG height=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
     <h2 class="no-num no-toc">Living Standard &mdash; Last Updated 11 November 2013</h2>

Modified: trunk/PerformanceTests/Skipped (159120 => 159121)


--- trunk/PerformanceTests/Skipped	2013-11-12 17:56:37 UTC (rev 159120)
+++ trunk/PerformanceTests/Skipped	2013-11-12 18:19:11 UTC (rev 159121)
@@ -86,6 +86,3 @@
 
 # New DOM benchmark is not ready for the prime time yet.
 DoYouEvenBench
-
-# Needs deflakization
-Parser/HTML5-8266-FullRender.html
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to