prop-desc.js (362B)
1 // Copyright 2015 Microsoft Corporation. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 description: Testing descriptor property of Math.log2 6 includes: [propertyHelper.js] 7 es6id: 20.2.2.23 8 ---*/ 9 10 verifyProperty(Math, "log2", { 11 writable: true, 12 enumerable: false, 13 configurable: true, 14 }); 15 16 reportCompare(0, 0);