From 2a74f0ec1b671f15fc7df3e1e294a65abc8ebac8 Mon Sep 17 00:00:00 2001 From: Brian Terlson Date: Fri, 5 Dec 2014 15:50:00 -0800 Subject: Reorganize ./test --- .../Object/defineProperty/15.2.3.6-4-553.js | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 test/built-ins/Object/defineProperty/15.2.3.6-4-553.js (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-4-553.js') diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-4-553.js b/test/built-ins/Object/defineProperty/15.2.3.6-4-553.js new file mode 100644 index 000000000..cb9e0744b --- /dev/null +++ b/test/built-ins/Object/defineProperty/15.2.3.6-4-553.js @@ -0,0 +1,46 @@ +// Copyright (c) 2012 Ecma International. All rights reserved. +// Ecma International makes this code available under the terms and conditions set +// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the +// "Use Terms"). Any redistribution of this code must retain the above +// copyright and this notice and otherwise comply with the Use Terms. + +/*--- +es5id: 15.2.3.6-4-553 +description: > + ES5 Attributes - success to update [[Set]] attribute of accessor + property ([[Get]] is a Function, [[Set]] is a Function, + [[Enumerable]] is false, [[Configurable]] is true) to different + value +includes: [runTestCase.js] +---*/ + +function testcase() { + var obj = {}; + + var getFunc = function () { + return 1001; + }; + + var verifySetFunc = "data"; + var setFunc = function (value) { + verifySetFunc = value; + }; + + Object.defineProperty(obj, "prop", { + get: getFunc, + set: setFunc, + enumerable: false, + configurable: true + }); + + var desc1 = Object.getOwnPropertyDescriptor(obj, "prop"); + + Object.defineProperty(obj, "prop", { + set: undefined + }); + + var desc2 = Object.getOwnPropertyDescriptor(obj, "prop"); + + return desc1.set === setFunc && typeof desc2.set === "undefined"; + } +runTestCase(testcase); -- cgit v1.2.1