| Index: test/mjsunit/accessors-on-global-object.js
|
| diff --git a/test/mjsunit/accessors-on-global-object.js b/test/mjsunit/accessors-on-global-object.js
|
| index 8d95692c54449e6dc4cfd9706a9bffe871e811de..dc910b7e713c5130f1da92b99e8d7c6880b3ec97 100644
|
| --- a/test/mjsunit/accessors-on-global-object.js
|
| +++ b/test/mjsunit/accessors-on-global-object.js
|
| @@ -28,7 +28,7 @@
|
| // Test that installing a getter on the global object instead of a
|
| // normal property works.
|
|
|
| -var x = 0;
|
| +x = 0;
|
|
|
| function getX() { return x; }
|
|
|
| @@ -41,7 +41,7 @@ for (var i = 0; i < 10; i++) {
|
| // Test that installing a setter on the global object instead of a
|
| // normal property works.
|
|
|
| -var y = 0;
|
| +y = 0;
|
| var setter_y;
|
|
|
| function setY(value) { y = value; }
|
| @@ -67,6 +67,6 @@ for (var i = 0; i < 10; i++) {
|
| assertEquals(i < 5 ? 42 : 0, getZ());
|
| if (i == 4) {
|
| delete z;
|
| - var z = 0;
|
| + z = 0;
|
| }
|
| }
|
|
|