| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| ES5 Attributes - Inherited property whose [[Enumerable]] attribute |
| is set to true is enumerable (Boolean instance) |
| Object.defineProperty(Boolean.prototype, "prop", { |
| var boolObj = new Boolean(); |
| var verifyEnumerable = false; |
| assert.sameValue(boolObj.hasOwnProperty("prop"), false, 'boolObj.hasOwnProperty("prop")'); |
| assert(verifyEnumerable, 'verifyEnumerable !== true'); |