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