Fix the way mochitest finds the body. Bug 398347, r=sayrer

This commit is contained in:
bzbarsky@mit.edu 2007-10-02 19:10:26 -07:00
Родитель f2b4afdb49
Коммит 9730005a6a
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -164,7 +164,12 @@ SimpleTest.showReport = function() {
var toggleFailed = A({'href': '#'}, "Toggle failed tests");
togglePassed.onclick = partial(SimpleTest.toggleByClass, 'test_ok');
toggleFailed.onclick = partial(SimpleTest.toggleByClass, 'test_not_ok');
var body = document.getElementsByTagName("body")[0];
var body = document.body; // Handles HTML documents
if (!body) {
// Do the XML thing
body = document.getElementsByTagNameNS("http://www.w3.org/1999/xhtml",
"body")[0]
}
var firstChild = body.childNodes[0];
var addNode;
if (firstChild) {