Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | |
michael@0 | 3 | /* |
michael@0 | 4 | * Any copyright is dedicated to the Public Domain. |
michael@0 | 5 | * http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | function setup() { |
michael@0 | 9 | var o = {all: 1, nowrite: 1, noconfig: 1, noble: 1}; |
michael@0 | 10 | Object.defineProperty(o, 'nowrite', {writable: false}); |
michael@0 | 11 | Object.defineProperty(o, 'noconfig', {configurable: false}); |
michael@0 | 12 | Object.defineProperty(o, 'noble', {writable: false, configurable: false}); |
michael@0 | 13 | return o; |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | assertEq(testLenientAndStrict('var o = setup(); delete o.all', |
michael@0 | 17 | returns(true), returns(true)), |
michael@0 | 18 | true); |
michael@0 | 19 | |
michael@0 | 20 | assertEq(testLenientAndStrict('var o = setup(); delete o.nowrite', |
michael@0 | 21 | returns(true), returns(true)), |
michael@0 | 22 | true); |
michael@0 | 23 | |
michael@0 | 24 | assertEq(testLenientAndStrict('var o = setup(); delete o.noconfig', |
michael@0 | 25 | returns(false), raisesException(TypeError)), |
michael@0 | 26 | true); |
michael@0 | 27 | |
michael@0 | 28 | assertEq(testLenientAndStrict('var o = setup(); delete o.noble', |
michael@0 | 29 | returns(false), raisesException(TypeError)), |
michael@0 | 30 | true); |
michael@0 | 31 | |
michael@0 | 32 | reportCompare(true, true); |