Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / create / 15.2.3.5-4-241.js
blob97e9ec83f8c5e135bf6f7b786e864cf98e725c6e
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.5-4-241
6 description: >
7     Object.create - 'get' property of one property in 'Properties' is
8     own accessor property without a get function (8.10.5 step 7.a)
9 ---*/
11 var descObj = {};
13 Object.defineProperty(descObj, "get", {
14   set: function() {}
15 });
17 var newObj = Object.create({}, {
18   prop: descObj
19 });
21 assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true');
22 assert.sameValue(typeof(newObj.prop), "undefined", 'typeof (newObj.prop)');
24 reportCompare(0, 0);