This commit is contained in:
Reed Loden 2008-10-01 00:52:51 -05:00
Родитель 2d3209e41d 2325f1ef71
Коммит c5a0616feb
2 изменённых файлов: 12 добавлений и 4 удалений

Просмотреть файл

@ -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),

Просмотреть файл

@ -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() };