blob: a4330a78e6cd7fef158c80b49bfb0453780e0d19 [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_1
description: Properties - [[HasOwnProperty]] (property does not exist)
---*/
var o = {};
assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")');