S15.3.5.1_A2_T3.js (780B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: the length property does not have the attributes { DontDelete } 6 es5id: 15.3.5.1_A2_T3 7 description: > 8 Checking if deleting the length property of 9 Function("arg1,arg2,arg3","arg1,arg2","arg3", null) succeeds 10 ---*/ 11 12 var f = new Function("arg1,arg2,arg3", "arg1,arg2", "arg3", null); 13 14 assert(f.hasOwnProperty('length'), 'f.hasOwnProperty(\'length\') must return true'); 15 16 delete f.length; 17 18 assert(!f.hasOwnProperty('length'), 'The value of !f.hasOwnProperty(\'length\') is expected to be true'); 19 assert.notSameValue(f.length, 6, 'The value of f.length is not 6'); 20 21 // TODO: Convert to verifyProperty() format. 22 23 reportCompare(0, 0);