2011-10-03 13:04:52 -07:00

19 lines
516 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Math.LOG10E is approximately 0.4342944819032518
*
* @path ch15/15.8/15.8.1/15.8.1.5/S15.8.1.5_A1.js
* @description Comparing Math.LOG10E with 0.4342944819032518
*/
$INCLUDE("math_precision.js");
$INCLUDE("math_isequal.js");
// CHECK#1
if (!isEqual(Math.LOG10E, 0.4342944819032518)) {
$ERROR('#1: \'Math.LOG10E is not approximatley equal to 0.4342944819032518\'');
}