Sunspider 0.9.1 harness doesn't actually close() its test documents
https://bugs.webkit.org/show_bug.cgi?id=47045
Reviewed by Daniel Bates.
* hosted/versions.html:
* resources/driver-TEMPLATE.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@90333
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-07-02 Maciej Stachowiak <mjs@apple.com>
+
+ Sunspider 0.9.1 harness doesn't actually close() its test documents
+ https://bugs.webkit.org/show_bug.cgi?id=47045
+
+ Reviewed by Daniel Bates.
+
+ * hosted/versions.html:
+ * resources/driver-TEMPLATE.html:
+
2011-07-02 Maciej Stachowiak <mjs@apple.com>
Not Reviewed.
<ul>
<li><a href="sunspider-0.9/driver.html">Version 0.9</a></li>
<li><a href="sunspider-0.9.1/driver.html">Version 0.9.1</a></li>
+<li><a href="sunspider-1.0/driver.html">Version 1.0</a></li>
</ul>
</body>
if (testIndex < tests.length) {
testFrame.contentDocument.open();
testFrame.contentDocument.write(testContents[testIndex]);
- testFrame.contentDocument.close;
+ testFrame.contentDocument.close();
} else if (++currentRepeat < repeatCount) {
testIndex = 0;
testFrame.contentDocument.open();
testFrame.contentDocument.write(testContents[testIndex]);
- testFrame.contentDocument.close;
+ testFrame.contentDocument.close();
} else {
finish();
}