| Index: test/mjsunit/object-define-property.js
|
| diff --git a/test/mjsunit/object-define-property.js b/test/mjsunit/object-define-property.js
|
| index 6771412eb6d9167c9ec0f7ecf740325ce953953f..bd104aaf0b0336c0cd14963f2220abf151ac807a 100644
|
| --- a/test/mjsunit/object-define-property.js
|
| +++ b/test/mjsunit/object-define-property.js
|
| @@ -1057,6 +1057,8 @@ assertEquals(999, o[999]);
|
|
|
|
|
| // Regression test: Bizzare behavior on non-strict arguments object.
|
| +// TODO(mstarzinger): Tests disabled, see bug 2261
|
| +/*
|
| (function test(arg0) {
|
| // Here arguments[0] is a fast alias on arg0.
|
| Object.defineProperty(arguments, "0", {
|
| @@ -1075,7 +1077,7 @@ assertEquals(999, o[999]);
|
| assertEquals(2, arg0);
|
| assertEquals(3, arguments[0]);
|
| })(0);
|
| -
|
| +*/
|
|
|
| // Regression test: We should never observe the hole value.
|
| var objectWithGetter = {};
|
|
|