summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/logical-or/S11.11.2_A4_T4.js
blob: 782faad38c342d0ec1db7103eb11c3a0e40687c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: If ToBoolean(x) is true, return x
es5id: 11.11.2_A4_T4
description: Type(x) or Type(y) vary between Null and Undefined
---*/

//CHECK#1
if ((true || undefined) !== true) {
  throw new Test262Error('#1: (true || undefined) === true');
}

//CHECK#2
if ((true || null) !== true) {
  throw new Test262Error('#2: (true || null) === true');
}

reportCompare(0, 0);