15.2.3.14-3-2.js (448B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.14-3-2 6 description: > 7 Object.keys returns the standard built-in Array containing own 8 enumerable properties (function) 9 ---*/ 10 11 function foo() {} 12 foo.x = 1; 13 14 var a = Object.keys(foo); 15 16 assert.sameValue(a.length, 1, 'a.length'); 17 assert.sameValue(a[0], 'x', 'a[0]'); 18 19 reportCompare(0, 0);