test262/test/built-ins/parseFloat/S15.1.2.3_A1_T4.js

19 lines
644 B
JavaScript
Raw Normal View History

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Operator use ToString
2014-07-25 00:41:42 +02:00
es5id: 15.1.2.3_A1_T4
description: Checking for Boolean object
---*/
//CHECK#1
if (!(isNaN(parseFloat(new Boolean(true))) && isNaN(parseFloat("NaN")))) {
$ERROR('#1: parseFloat(new Boolean(true)) === Not-a-Number; parseFloat("NaN") === Not-a-Number. Actual: ' + (parseFloat("NaN")));
}
//CHECK#2
if (String(parseFloat(new Boolean(false))) !== "NaN") {
$ERROR('#2: String(parseFloat(new Boolean(false))) === "NaN". Actual: ' + (String(parseFloat(new Boolean(false)))));
}