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