test262/test/suite/ch11/11.4/11.4.3/S11.4.3_A3.3.js
2011-10-03 13:04:52 -07:00

26 lines
649 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Result of applying "typeof" operator to boolean is "boolean"
*
* @path ch11/11.4/11.4.3/S11.4.3_A3.3.js
* @description typeof (boolean value) === "boolean"
*/
//CHECK#1
if (typeof true !== "boolean") {
$ERROR('#1: typeof true === "boolean". Actual: ' + (typeof true));
}
//CHECK#2
if (typeof false !== "boolean") {
$ERROR('#2: typeof false === "boolean". Actual: ' + (typeof false));
}
//CHECK#3
if (typeof !-1 !== "boolean") {
$ERROR('#3: typeof !-1 === "boolean". Actual: ' + (typeof !-1));
}