S15.3.5.1_A2_T2.js (761B)
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_T2 7 description: > 8 Checking if deleting the length property of 9 Function("arg1,arg2,arg3","arg4,arg5", null) succeeds 10 ---*/ 11 12 var f = Function("arg1,arg2,arg3", "arg4,arg5", 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, 5, 'The value of f.length is not 5'); 20 21 // TODO: Convert to verifyProperty() format. 22 23 reportCompare(0, 0);