зеркало из https://github.com/mozilla/pjs.git
bug 469718 - followup to avoid accessing document properties outside a browser. r=bc
This commit is contained in:
Родитель
00a36f34b2
Коммит
762c6b6bae
|
@ -165,7 +165,8 @@ gFailureExpected = false;
|
|||
TestCase.prototype.dump = function () {
|
||||
// let reftest handle error reporting, otherwise
|
||||
// output a summary line.
|
||||
if (!document.location.href.match(/jsreftest.html/))
|
||||
if (typeof document != "object" ||
|
||||
!document.location.href.match(/jsreftest.html/))
|
||||
{
|
||||
dump('\njstest: ' + this.path + ' ' +
|
||||
'bug: ' + this.bugnumber + ' ' +
|
||||
|
|
Загрузка…
Ссылка в новой задаче