prop-desc.js (492B)
1 // |reftest| skip-if(!Math.sumPrecise) -- Math.sumPrecise is not enabled unconditionally 2 // Copyright (C) 2024 Kevin Gibbons. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 /*--- 5 esid: sec-math.sumprecise 6 description: checks the "sumPrecise" property of Math 7 includes: [propertyHelper.js] 8 features: [Math.sumPrecise] 9 ---*/ 10 11 verifyProperty(Math, "sumPrecise", { 12 writable: true, 13 enumerable: false, 14 configurable: true 15 }); 16 17 reportCompare(0, 0);