blob: ae54c2b758bad5cb8dcd2617d70d036f28738b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Only constructor call (with "new" keyword) makes instance
es5id: 11.8.6_A4_T1
description: Checking Boolean case
---*/
//CHECK#1
if (false instanceof Boolean) {
$ERROR('#1: false is not instanceof Boolean');
}
//CHECK#2
if (Boolean(false) instanceof Boolean) {
$ERROR('#2: Boolean(false) is not instanceof Boolean');
}
//CHECK#3
if (new Boolean instanceof Boolean !== true) {
$ERROR('#3: new Boolean instanceof Boolean');
}
reportCompare(0, 0);
|