2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: If x is +Infinity and y<0, Math.pow(x,y) is +0
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.8.2.13_A12
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Checking if Math.pow(x,y) equals to +0, where x is +Infinity and
|
|
|
|
y<0
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
// CHECK#1
|
|
|
|
|
2015-04-29 17:40:30 +02:00
|
|
|
var x = +Infinity;
|
|
|
|
var y = new Array();
|
2011-09-07 08:35:18 +02:00
|
|
|
y[0] = -Infinity;
|
|
|
|
y[1] = -1.7976931348623157E308; //largest (by module) finite number
|
|
|
|
y[2] = -1;
|
|
|
|
y[3] = -0.000000000000001;
|
2015-04-29 17:40:30 +02:00
|
|
|
var ynum = 4;
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2015-04-29 17:40:30 +02:00
|
|
|
for (var i = 0; i < ynum; i++)
|
2011-09-07 08:35:18 +02:00
|
|
|
{
|
|
|
|
if (Math.pow(x,y[i]) !== +0)
|
|
|
|
{
|
|
|
|
$ERROR("#1: Math.pow(" + x + ", " + y[i] + ") !== +0");
|
|
|
|
}
|
|
|
|
}
|