mirror of https://github.com/tc39/test262.git
66 lines
1.5 KiB
JavaScript
66 lines
1.5 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: |
|
|
Let reservedURISet be a string containing one instance of each character valid
|
|
in uriReserved plus "#"
|
|
esid: sec-decodeuri-encodeduri
|
|
description: Checking all character in reservedURISet. HexDigit in [0..9, A..F]
|
|
---*/
|
|
|
|
//CHECK#1
|
|
if (decodeURI("%3B") !== "%3B") {
|
|
$ERROR('#1: decodeURI("%3B") equal "%3B", not ";"');
|
|
}
|
|
|
|
//CHECK#2
|
|
if (decodeURI("%2F") !== "%2F") {
|
|
$ERROR('#2: decodeURI("%2F") equal "%2F", not "/"');
|
|
}
|
|
|
|
//CHECK#3
|
|
if (decodeURI("%3F") !== "%3F") {
|
|
$ERROR('#3: decodeURI("%3F") equal "%3F", not "?"');
|
|
}
|
|
|
|
//CHECK#4
|
|
if (decodeURI("%3A") !== "%3A") {
|
|
$ERROR('#4: decodeURI("%3A") equal "%3A", not ":"');
|
|
}
|
|
|
|
//CHECK#5
|
|
if (decodeURI("%40") !== "%40") {
|
|
$ERROR('#5: decodeURI("%40") equal "%40", not "@"');
|
|
}
|
|
|
|
//CHECK#6
|
|
if (decodeURI("%26") !== "%26") {
|
|
$ERROR('#6: decodeURI("%26") equal "%26", not "&"');
|
|
}
|
|
|
|
//CHECK#7
|
|
if (decodeURI("%3D") !== "%3D") {
|
|
$ERROR('#7.1: decodeURI("%3D") equal "%3D", not "="');
|
|
}
|
|
|
|
//CHECK#8
|
|
if (decodeURI("%2B") !== "%2B") {
|
|
$ERROR('#8.1: decodeURI("%2B") equal "%2B", not "+"');
|
|
}
|
|
|
|
//CHECK#9
|
|
if (decodeURI("%24") !== "%24") {
|
|
$ERROR('#9: decodeURI("%24") equal "%24", not "$"');
|
|
}
|
|
|
|
//CHECK#10
|
|
if (decodeURI("%2C") !== "%2C") {
|
|
$ERROR('#10: decodeURI("%2C") equal "%2C", not ","');
|
|
}
|
|
|
|
//CHECK#11
|
|
if (decodeURI("%23") !== "%23") {
|
|
$ERROR('#11: decodeURI("%23") equal "%23", not "#"');
|
|
}
|