blob: a66ec81a8f775e803bb6d5f4e99e5ed0a6ceb25f [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_43
description: >
Properties - [[HasOwnProperty]] (non-configurable, enumerable
inherited setter property)
---*/
var base = {};
Object.defineProperty(base, "foo", {
set: function() {;
},
enumerable: true
});
var o = Object.create(base);
assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")');