зеркало из https://github.com/mozilla/gecko-dev.git
...and one more bustage fix to change a test that assigned to undefined, seemingly for no reason, to assign to another otherwise-irrelevant global property (parseInt) instead. r=lumpy
This commit is contained in:
Родитель
4b4641eb43
Коммит
501646bf8a
|
@ -51,9 +51,9 @@ printStatus (summary);
|
|||
|
||||
jit(true);
|
||||
__defineGetter__("x3", Function);
|
||||
undefined = x3;
|
||||
undefined.prototype = [];
|
||||
for (var z = 0; z < 4; ++z) { new undefined() }
|
||||
parseInt = x3;
|
||||
parseInt.prototype = [];
|
||||
for (var z = 0; z < 4; ++z) { new parseInt() }
|
||||
jit(false);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
Загрузка…
Ссылка в новой задаче