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