js/src/tests/test262/ch11/11.11/11.11.1/S11.11.1_A3_T2.js

branch
TOR_BUG_3246
changeset 6
8bccb770b82d
equal deleted inserted replaced
-1:000000000000 0:c3fca8ed724c
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3
4 /**
5 * If ToBoolean(x) is false, return x
6 *
7 * @path ch11/11.11/11.11.1/S11.11.1_A3_T2.js
8 * @description Type(x) and Type(y) vary between primitive number and Number object
9 */
10
11 //CHECK#1
12 if ((-0 && -1) !== 0) {
13 $ERROR('#1.1: (-0 && -1) === 0');
14 } else {
15 if ((1 / (-0 && -1)) !== Number.NEGATIVE_INFINITY) {
16 $ERROR('#1.2: (-0 && -1) === -0');
17 }
18 }
19
20 //CHECK#2
21 if ((0 && new Number(-1)) !== 0) {
22 $ERROR('#2.1: (0 && new Number(-1)) === 0');
23 } else {
24 if ((1 / (0 && new Number(-1))) !== Number.POSITIVE_INFINITY) {
25 $ERROR('#2.2: (0 && new Number(-1)) === +0');
26 }
27 }
28
29 //CHECK#3
30 if ((isNaN(NaN && 1)) !== true) {
31 $ERROR('#3: (NaN && 1) === Not-a-Number');
32 }
33

mercurial