test262/test/built-ins/Object/create/15.2.3.5-4-276.js

29 lines
791 B
JavaScript

// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.2.3.5-4-276
description: >
Object.create - 'set' property of one property in 'Properties' is
own accessor property without a get function (8.10.5 step 8.a)
includes: [runTestCase.js]
---*/
function testcase() {
var descObj = {};
Object.defineProperty(descObj, "set", {
set: function () { }
});
var newObj = Object.create({}, {
prop: descObj
});
var hasProperty = newObj.hasOwnProperty("prop");
var desc = Object.getOwnPropertyDescriptor(newObj, "prop");
return hasProperty && typeof desc.set === "undefined";
}
runTestCase(testcase);