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 or y is NaN, return false
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 11.9.4_A4.1_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: x is NaN
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
if (Number.NaN === true) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#1: NaN !== true');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#2
|
|
|
|
if (Number.NaN === 1) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#2: NaN !== 1');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#3
|
|
|
|
if (Number.NaN === Number.NaN) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#3: NaN !== NaN');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#4
|
|
|
|
if (Number.NaN === Number.POSITIVE_INFINITY) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#4: NaN !== +Infinity');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#5
|
|
|
|
if (Number.NaN === Number.NEGATIVE_INFINITY) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#5: NaN !== -Infinity');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#6
|
|
|
|
if (Number.NaN === Number.MAX_VALUE) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#6: NaN !== Number.MAX_VALUE');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#7
|
|
|
|
if (Number.NaN === Number.MIN_VALUE) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#7: NaN !== Number.MIN_VALUE');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#8
|
|
|
|
if (Number.NaN === "string") {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#8: NaN !== "string"');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#9
|
|
|
|
if (Number.NaN === new Object()) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#9: NaN !== new Object()');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|