diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Object/defineProperty/15.2.3.6-4-494.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Object/defineProperty/15.2.3.6-4-494.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/defineProperty/15.2.3.6-4-494.js b/js/src/tests/test262/built-ins/Object/defineProperty/15.2.3.6-4-494.js new file mode 100644 index 0000000000..360d5f2ebd --- /dev/null +++ b/js/src/tests/test262/built-ins/Object/defineProperty/15.2.3.6-4-494.js @@ -0,0 +1,32 @@ +// Copyright (c) 2012 Ecma International. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +es5id: 15.2.3.6-4-494 +description: > + ES5 Attributes - [[Get]] attribute of accessor property ([[Get]] + is a Function, [[Set]] is undefined, [[Enumerable]] is true, + [[Configurable]] is true) is the expected function +---*/ + +var obj = {}; + +var getFunc = function() { + return 1001; +}; + +Object.defineProperty(obj, "prop", { + get: getFunc, + set: undefined, + enumerable: true, + configurable: true +}); + +var propertyDefineCorrect = obj.hasOwnProperty("prop"); +var desc = Object.getOwnPropertyDescriptor(obj, "prop"); + +assert(propertyDefineCorrect, 'propertyDefineCorrect !== true'); +assert.sameValue(desc.get, getFunc, 'desc.get'); +assert.sameValue(obj.prop, 1001, 'obj.prop'); + +reportCompare(0, 0); |