PerformanceTests/SunSpider/ChangeLog

 12011-07-02 Maciej Stachowiak <mjs@apple.com>
 2
 3 Sunspider 0.9.1 harness doesn't actually close() its test documents
 4 https://bugs.webkit.org/show_bug.cgi?id=47045
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * hosted/versions.html:
 9 * resources/driver-TEMPLATE.html:
 10
1112011-07-02 Maciej Stachowiak <mjs@apple.com>
212
313 Not Reviewed.
90328

PerformanceTests/SunSpider/hosted/versions.html

@@of the test content:</p>
4848<ul>
4949<li><a href="sunspider-0.9/driver.html">Version 0.9</a></li>
5050<li><a href="sunspider-0.9.1/driver.html">Version 0.9.1</a></li>
 51<li><a href="sunspider-1.0/driver.html">Version 1.0</a></li>
5152</ul>
5253
5354</body>
90323

PerformanceTests/SunSpider/resources/driver-TEMPLATE.html

@@function reallyNext()
7070 if (testIndex < tests.length) {
7171 testFrame.contentDocument.open();
7272 testFrame.contentDocument.write(testContents[testIndex]);
73  testFrame.contentDocument.close;
 73 testFrame.contentDocument.close();
7474 } else if (++currentRepeat < repeatCount) {
7575 testIndex = 0;
7676 testFrame.contentDocument.open();
7777 testFrame.contentDocument.write(testContents[testIndex]);
78  testFrame.contentDocument.close;
 78 testFrame.contentDocument.close();
7979 } else {
8080 finish();
8181 }
90323