mirror of https://github.com/tc39/test262.git
17 lines
479 B
JavaScript
17 lines
479 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: Math.LOG10E is approximately 0.4342944819032518
|
|
es5id: 15.8.1.5_A1
|
|
description: Comparing Math.LOG10E with 0.4342944819032518
|
|
includes:
|
|
- math_precision.js
|
|
- math_isequal.js
|
|
---*/
|
|
|
|
// CHECK#1
|
|
if (!isEqual(Math.LOG10E, 0.4342944819032518)) {
|
|
$ERROR('#1: \'Math.LOG10E is not approximatley equal to 0.4342944819032518\'');
|
|
}
|