Fix trivially busted test for bug 533876.

This commit is contained in:
Jason Orendorff 2010-04-06 10:05:13 -05:00
Родитель 8dd425802f
Коммит c4ef8e820f
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1,6 +1,6 @@
url-prefix ../../jsreftest.html?test=js1_8_5/regress/
script regress-500528.js
fails script regress-533876.js
script regress-533876.js
script regress-541255-0.js
script regress-541255-1.js
script regress-541255-2.js

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

@ -16,5 +16,7 @@ try {
delete eval; // force dictionary scope for global
gc();
var f = eval("function () { return /x/; }");
var f = eval("(function () { return /x/; })");
x.watch('x', f); // clone property from global to x, including SPROP_IN_DICTIONARY flag
reportCompare("ok", "ok", "bug 533876");