Chromium Code Reviews| Index: test/mjsunit/harmony/object-observe.js |
| diff --git a/test/mjsunit/harmony/object-observe.js b/test/mjsunit/harmony/object-observe.js |
| index 72a9cadbf8ecb9df05a37593055e58e3c44f7efc..48386e38e9ae2ac403ed6b1c9e4242508c10549d 100644 |
| --- a/test/mjsunit/harmony/object-observe.js |
| +++ b/test/mjsunit/harmony/object-observe.js |
| @@ -1133,6 +1133,8 @@ var properties = ["a", "1", 1, "length", "setPrototype", "name", "caller"]; |
| function blacklisted(obj, prop) { |
| return (obj instanceof Int32Array && prop == 1) || |
| (obj instanceof Int32Array && prop === "length") || |
| + // A read-only, configurable property with another along the prototype chain. |
|
rossberg
2013/12/06 10:35:43
Nit: line length
|
| + (obj instanceof Function && prop === "name") || |
| (obj instanceof ArrayBuffer && prop == 1) |
| } |