2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: "The MV of HexDigit ::: b or of HexDigit ::: B is 11"
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 9.3.1_A27
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Compare Number('0xB'), Number('0XB'), Number('0xb') and
|
|
|
|
Number('0Xb') with 11
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
// CHECK#1
|
2018-02-09 18:09:47 +01:00
|
|
|
if (Number("0xb") !== 11) {
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#1: Number("0xb") === 11. Actual: ' + (Number("0xb")));
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK#2
|
2018-02-09 18:09:47 +01:00
|
|
|
if (Number("0xB") !== 11) {
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#2: Number("0xB") === 11. Actual: ' + (Number("0xB")));
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK#3
|
2018-02-09 18:09:47 +01:00
|
|
|
if (+("0Xb") !== 11) {
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#3: +("0Xb") === 11. Actual: ' + (+("0Xb")));
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK#4
|
2018-02-09 18:09:47 +01:00
|
|
|
if (Number("0XB") !== 11) {
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#4: Number("0XB") === 11. Actual: ' + (Number("0XB")));
|
|
|
|
}
|