| Index: test/mjsunit/harmony/object-observe.js
|
| diff --git a/test/mjsunit/harmony/object-observe.js b/test/mjsunit/harmony/object-observe.js
|
| index 584d9e82d649879f380f60ef5fb94e0458a86596..c902fb2026b612eeba62d525d989a7f00f355846 100644
|
| --- a/test/mjsunit/harmony/object-observe.js
|
| +++ b/test/mjsunit/harmony/object-observe.js
|
| @@ -898,7 +898,7 @@ var q = {bar: 'no'};
|
| obj.__proto__ = p;
|
| obj.__proto__ = p; // ignored
|
| obj.__proto__ = null;
|
| -obj.__proto__ = q; // the __proto__ accessor is gone
|
| +obj.__proto__ = q;
|
| // TODO(adamk): Add tests for objects with hidden prototypes
|
| // once we support observing the global object.
|
| Object.deliverChangeRecords(observer.callback);
|
| @@ -906,7 +906,7 @@ observer.assertCallbackRecords([
|
| { object: obj, name: '__proto__', type: 'prototype',
|
| oldValue: Object.prototype },
|
| { object: obj, name: '__proto__', type: 'prototype', oldValue: p },
|
| - { object: obj, name: '__proto__', type: 'new' },
|
| + { object: obj, name: '__proto__', type: 'prototype', oldValue: null },
|
| ]);
|
|
|
|
|
|
|