test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js

36 lines
1003 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: |
If B = 110xxxxx (n = 2) and string.charAt(k + 4) and
string.charAt(k + 5) do not represent hexadecimal digits, throw URIError
2017-06-29 21:42:01 +02:00
esid: sec-decodeuricomponent-encodeduricomponent
description: Complex tests
---*/
//CHECK
var result = true;
var interval = [
[0x00, 0x2F],
[0x3A, 0x40],
[0x47, 0x60],
[0x67, 0xFFFF]
];
for (var indexI = 0; indexI < interval.length; indexI++) {
for (var indexJ = interval[indexI][0]; indexJ <= interval[indexI][1]; indexJ++) {
try {
decodeURIComponent("%C0%" + String.fromCharCode(indexJ, indexJ));
2017-06-29 21:42:11 +02:00
result = false;
} catch (e) {
if ((e instanceof URIError) !== true) {
2017-06-29 21:42:11 +02:00
result = false;
}
2017-06-29 21:42:11 +02:00
}
}
}
2017-06-29 21:42:11 +02:00
if (result !== true) {
$ERROR('#1: If B = 110xxxxx (n = 2) and (string.charAt(k + 4) and string.charAt(k + 5)) do not represent hexadecimal digits, throw URIError');
}