| // Copyright (C) 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Objects that do not define all of the specified "own" properties as |
| configurable do not satisfy the assertion. |
| includes: [testBuiltInObject.js] |
| Object.defineProperty(obj, 'a', { |
| writable: true, enumerable: false, configurable: true |
| Object.defineProperty(obj, 'b', { |
| writable: true, enumerable: false, configurable: false |
| Object.defineProperty(obj, 'c', { |
| writable: true, enumerable: false, configurable: true |
| testBuiltInObject(obj, false, false, ['a', 'b', 'c']); |
| if (err.constructor !== Test262Error) { |
| 'Expected a Test262Error, but a "' + err.constructor.name + |
| $ERROR('Expected a Test262Error, but no error was thrown.'); |