This commit is contained in:
Reed Loden 2008-10-01 00:52:51 -05:00
commit 77dae2b19a
2 changed files with 12 additions and 4 deletions

View File

@ -40,6 +40,12 @@ window.addEventListener("message", function(e) {
gen = runTest();
function runTest() {
if (navigator.platform == "MacIntel") {
todo(false, "httpd.js fails on Mac");
SimpleTest.finish();
yield;
}
var loader = document.getElementById('loader');
var loaderWindow = loader.contentWindow;
loader.onload = function () { gen.next() };
@ -402,10 +408,6 @@ function runTest() {
"wrong responseText in test for " + test.toSource());
}
/*SimpleTest.finish();
yield;*/
for each(test in failTests) {
req = {
url: baseURL + "allowOrigin=" + escape(origin),

View File

@ -26,6 +26,12 @@ window.addEventListener("message", function(e) {
gen = runTest();
function runTest() {
if (navigator.platform == "MacIntel") {
todo(false, "httpd.js fails on Mac");
SimpleTest.finish();
yield;
}
var loader = document.getElementById('loader');
var loaderWindow = loader.contentWindow;
loader.onload = function () { gen.next() };