blob: 122313417e74dc18166d474300fffae79a60c105 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 8.12.1-1_28
description: >
Properties - [[HasOwnProperty]] (configurable, non-enumerable own
getter property)
---*/
var o = {};
Object.defineProperty(o, "foo", {
get: function() {
return 42;
},
configurable: true
});
assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true');