This commit is contained in:
Lyza Danger Gardner 2017-06-29 15:49:38 -04:00
parent 461e84459b
commit b7daa23582
53 changed files with 105 additions and 0 deletions

View File

@ -6,6 +6,8 @@ info: >
If B = 110xxxxx (n = 2) and string.charAt(k + 4) and
string.charAt(k + 5) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.10_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests
---*/

View File

@ -7,6 +7,8 @@ info: >
string.charAt(k + 5)) or (string.charAt(k + 7) and
string.charAt(k + 8)) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.11_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests, string.charAt(k + 4) and string.charAt(k + 5) do
not represent hexadecimal digits

View File

@ -7,6 +7,8 @@ info: >
string.charAt(k + 5)) or (string.charAt(k + 7) and
string.charAt(k + 8)) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.11_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests, string.charAt(k + 7) and string.charAt(k + 8) do
not represent hexadecimal digits

View File

@ -8,6 +8,8 @@ info: >
string.charAt(k + 8)) or (string.charAt(k + 10) and
string.charAt(k + 11)) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.12_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests, string.charAt(k + 4) and string.charAt(k + 5) do
not represent hexadecimal digits

View File

@ -8,6 +8,8 @@ info: >
string.charAt(k + 8)) or (string.charAt(k + 10) and
string.charAt(k + 11)) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.12_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests, string.charAt(k + 7) and string.charAt(k + 7) do
not represent hexadecimal digits

View File

@ -8,6 +8,8 @@ info: >
string.charAt(k + 8)) or (string.charAt(k + 10) and
string.charAt(k + 11)) do not represent hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.12_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests, string.charAt(k + 10) and string.charAt(k + 11) do
not represent hexadecimal digits

View File

@ -6,6 +6,8 @@ info: >
If B = 110xxxxx (n = 2) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.13_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xC0 - 0xDF], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 110xxxxx (n = 2) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.13_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xC0 - 0xDF], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.14_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xE0 - 0xEF], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.14_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xE0 - 0xEF], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.14_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xE0 - 0xEF], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.14_T4
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xE0 - 0xEF], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T4
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T5
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B),
throw URIError
es5id: 15.1.3.1_A1.15_T6
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If string.charAt(k) equal "%" and k + 2 >= string.length, throw URIError
es5id: 15.1.3.1_A1.1_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = string.charAt(k+1) + string.charAt(k+2) do not represent
hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.2_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = string.charAt(k+1) + string.charAt(k+2) do not represent
hexadecimal digits, throw URIError
es5id: 15.1.3.1_A1.2_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B = 10xxxxxx or B = 11111xxx, throw URIError
es5id: 15.1.3.1_A1.3_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = 10xxxxxx -> B in [0x80 - 0xBF]
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B = 10xxxxxx or B = 11111xxx, throw URIError
es5id: 15.1.3.1_A1.3_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = 11111xxx -> B in [0xF8 - 0xFF]
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B = 110xxxxx (n = 2) and (k + 2) + 3 >= length, throw URIError
es5id: 15.1.3.1_A1.4_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xC0 - 0xDF]
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B = 1110xxxx (n = 3) and (k + 2) + 6 >= length, throw URIError
es5id: 15.1.3.1_A1.5_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xE0 - 0xEF]
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B = 11110xxx (n = 4) and (k + 2) + 9 >= length, throw URIError
es5id: 15.1.3.1_A1.6_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xF0 - 0xF7]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 110xxxxx (n = 2) and string.charAt(k + 3) not equal "%", throw
URIError
es5id: 15.1.3.1_A1.7_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests. B = [0xC0 - 0xDF]
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and string.charAt(k + 3),
string.charAt(k + 6) not equal "%", throw URIError
es5id: 15.1.3.1_A1.8_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests. B = [0xE0 - 0xEF], string.charAt(k + 3) not equal "%"
includes: [decimalToHexString.js]

View File

@ -6,6 +6,8 @@ info: >
If B = 1110xxxx (n = 3) and string.charAt(k + 3),
string.charAt(k + 6) not equal "%", throw URIError
es5id: 15.1.3.1_A1.8_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests. B = [0xE0 - 0xEF], string.charAt(k + 6) not equal "%"
includes: [decimalToHexString.js]

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and string.charAt(k + 3),
string.charAt(k + 6), string.charAt(k + 9) not equal "%", throw URIError
es5id: 15.1.3.1_A1.9_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 3) not equal "%"
includes: [decimalToHexString.js]

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and string.charAt(k + 3),
string.charAt(k + 6), string.charAt(k + 9) not equal "%", throw URIError
es5id: 15.1.3.1_A1.9_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 6) not equal "%"
includes: [decimalToHexString.js]

View File

@ -6,6 +6,8 @@ info: >
If B = 11110xxx (n = 4) and string.charAt(k + 3),
string.charAt(k + 6), string.charAt(k + 9) not equal "%", throw URIError
es5id: 15.1.3.1_A1.9_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 9) not equal "%"
includes: [decimalToHexString.js]

View File

@ -4,6 +4,8 @@
/*---
info: If string.charAt(k) not equal "%", return this char
es5id: 15.1.3.1_A2.1_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests
includes: [decimalToHexString.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: If B1 = 0xxxxxxxx ([0x00 - 0x7F]), without [uriReserved, #], return B1
es5id: 15.1.3.1_A2.2_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests, use RFC 3629
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
If B1 = 110xxxxx ([0xC0 - 0xDF]), B2 = 10xxxxxx ([0x80 - 0xBF), without
B1 = [0xC0, 0xC1], return UTF8(B1, B2)
es5id: 15.1.3.1_A2.3_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests, use RFC 3629
includes: [decimalToHexString.js]
---*/

View File

@ -7,6 +7,8 @@ info: >
without [B1, B2] = [0xE0, 0x80 - 0x9F], [0xED, 0xA0 - 0xBF] (0xD800 -
0xDFFF), return UTF8(B1, B2, B3)
es5id: 15.1.3.1_A2.4_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests, use RFC 3629
includes: [decimalToHexString.js]
---*/

View File

@ -7,6 +7,8 @@ info: >
0xBF]), without [B1, B2] = [0xF0, 0x80 - 0x9F], [0xF4, 0x90 - 0xBF],
return UTF8(B1, B2, B3, B4)
es5id: 15.1.3.1_A2.5_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex tests, use RFC 3629
includes: [decimalToHexString.js]
---*/

View File

@ -6,6 +6,8 @@ info: >
Let reservedURISet be a string containing one instance of each character valid
in uriReserved plus "#"
es5id: 15.1.3.1_A3_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking all character in reservedURISet. HexDigit in [0..9, A..F]
---*/

View File

@ -6,6 +6,8 @@ info: >
Let reservedURISet be a string containing one instance of each character valid
in uriReserved plus "#"
es5id: 15.1.3.1_A3_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking all character in reservedURISet. HexDigit in [0..9, a..f]
---*/

View File

@ -6,6 +6,8 @@ info: >
Let reservedURISet be a string containing one instance of each character valid
in uriReserved plus "#"
es5id: 15.1.3.1_A3_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Complex test
---*/

View File

@ -4,6 +4,8 @@
/*---
info: URI tests
es5id: 15.1.3.1_A4_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking ENGLISH ALPHABET
---*/

View File

@ -4,6 +4,8 @@
/*---
info: URI tests
es5id: 15.1.3.1_A4_T2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking RUSSIAN ALPHABET
---*/

View File

@ -4,6 +4,8 @@
/*---
info: URI tests
es5id: 15.1.3.1_A4_T3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking URL with Line Terminator
---*/

View File

@ -4,6 +4,8 @@
/*---
info: URI tests
es5id: 15.1.3.1_A4_T4
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Test some url
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The length property of decodeURI has the attribute DontEnum
es5id: 15.1.3.1_A5.1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking use propertyIsEnumerable, for-in
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The length property of decodeURI does not have the attribute DontDelete
es5id: 15.1.3.1_A5.2
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking use hasOwnProperty, delete
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The length property of decodeURI has the attribute ReadOnly
es5id: 15.1.3.1_A5.3
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking if varying the length property fails
includes: [propertyHelper.js]
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The length property of decodeURI is 1
es5id: 15.1.3.1_A5.4
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: decodeURI.length === 1
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The decodeURI property has the attribute DontEnum
es5id: 15.1.3.1_A5.5
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking use propertyIsEnumerable, for-in
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The decodeURI property has not prototype property
es5id: 15.1.3.1_A5.6
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: Checking decodeURI.prototype
---*/

View File

@ -4,6 +4,8 @@
/*---
info: The decodeURI property can't be used as constructor
es5id: 15.1.3.1_A5.7
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
If property does not implement the internal [[Construct]] method,
throw a TypeError exception

View File

@ -4,6 +4,8 @@
/*---
info: Operator use ToString
es5id: 15.1.3.1_A6_T1
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: If Type(value) is Object, evaluate ToPrimitive(value, String)
---*/

View File

@ -3,6 +3,7 @@
/*---
es6id: 18.2.6.2
esid: sec-decodeuri-encodeduri
description: >
decodeURI.name is "decodeURI".
info: >