Fix mochitest fallout from bug 396849

This commit is contained in:
mrbkap@gmail.com 2007-12-18 13:56:14 -08:00
Родитель d3295c9416
Коммит 85081118e7
1 изменённых файлов: 2 добавлений и 7 удалений

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

@ -270,13 +270,8 @@ function runTest2() {
}
var doc = $("t").contentDocument;
try {
is(doc instanceof $("t").contentWindow.HTMLDocument, true,
"Expected an HTMLDocument here");
todo(1, "Someone fixed bug 396849; need to update this code");
} catch (e) {
todo(0, "Running into bug 396849");
}
is(doc instanceof $("t").contentWindow.HTMLDocument, true,
"Expected an HTMLDocument here");
isnot(doc.nodePrincipal, null, "Must have doc principal");
is(doc.nodePrincipal instanceof Components.interfaces.nsIPrincipal,
true, "doc principal must be a principal");