diff --git a/test/built-ins/Array/Symbol.species/return-value.js b/test/built-ins/Array/Symbol.species/return-value.js index a0f3a35c2e..279f9e4355 100644 --- a/test/built-ins/Array/Symbol.species/return-value.js +++ b/test/built-ins/Array/Symbol.species/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-array-@@species -es6id: 24.1.2.5 description: Return value of @@species accessor method info: | 1. Return the this value. diff --git a/test/built-ins/Array/Symbol.species/symbol-species.js b/test/built-ins/Array/Symbol.species/symbol-species.js index cc471842ca..44c798d228 100644 --- a/test/built-ins/Array/Symbol.species/symbol-species.js +++ b/test/built-ins/Array/Symbol.species/symbol-species.js @@ -5,7 +5,6 @@ info: | Array has a property at `Symbol.species` esid: sec-get-array-@@species -es6id: 22.1.2.5 author: Sam Mikes description: Array[Symbol.species] exists per spec includes: [propertyHelper.js] diff --git a/test/built-ins/Array/from/Array.from-descriptor.js b/test/built-ins/Array/from/Array.from-descriptor.js index 38778287b6..7041f6a297 100644 --- a/test/built-ins/Array/from/Array.from-descriptor.js +++ b/test/built-ins/Array/from/Array.from-descriptor.js @@ -6,7 +6,6 @@ description: Testing descriptor property of Array.from includes: - propertyHelper.js esid: sec-array.from -es6id: 22.1.2.1 ---*/ verifyWritable(Array, "from"); diff --git a/test/built-ins/Array/from/Array.from-name.js b/test/built-ins/Array/from/Array.from-name.js index 7f201766d6..ff6f4913af 100644 --- a/test/built-ins/Array/from/Array.from-name.js +++ b/test/built-ins/Array/from/Array.from-name.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: '`name` property' info: | ES6 Section 17: diff --git a/test/built-ins/Array/from/Array.from_arity.js b/test/built-ins/Array/from/Array.from_arity.js index e5abbd9eb7..88eb713f0e 100644 --- a/test/built-ins/Array/from/Array.from_arity.js +++ b/test/built-ins/Array/from/Array.from_arity.js @@ -3,7 +3,6 @@ // found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > The length property of the Array.from method is 1. info: | diff --git a/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js b/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js index 311bc7780f..382d6fab0f 100644 --- a/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js +++ b/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js @@ -3,7 +3,6 @@ // found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > If this is a constructor, and items doesn't have an @@iterator, returns a new instance of this diff --git a/test/built-ins/Array/from/calling-from-valid-1-noStrict.js b/test/built-ins/Array/from/calling-from-valid-1-noStrict.js index eb0d24aa44..72d7139765 100644 --- a/test/built-ins/Array/from/calling-from-valid-1-noStrict.js +++ b/test/built-ins/Array/from/calling-from-valid-1-noStrict.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Map function without thisArg on non strict mode info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/calling-from-valid-1-onlyStrict.js b/test/built-ins/Array/from/calling-from-valid-1-onlyStrict.js index 68abe0f44a..68141450db 100644 --- a/test/built-ins/Array/from/calling-from-valid-1-onlyStrict.js +++ b/test/built-ins/Array/from/calling-from-valid-1-onlyStrict.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Map function without thisArg on strict mode info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/calling-from-valid-2.js b/test/built-ins/Array/from/calling-from-valid-2.js index 139c9818c1..2bdfd0d639 100644 --- a/test/built-ins/Array/from/calling-from-valid-2.js +++ b/test/built-ins/Array/from/calling-from-valid-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Calling from with a valid map function with thisArg info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/elements-added-after.js b/test/built-ins/Array/from/elements-added-after.js index a8ff21a0c1..52900144f5 100644 --- a/test/built-ins/Array/from/elements-added-after.js +++ b/test/built-ins/Array/from/elements-added-after.js @@ -4,7 +4,6 @@ /*--- description: Elements added after the call to from esid: sec-array.from -es6id: 22.1.2.1 ---*/ var arrayIndex = -1; diff --git a/test/built-ins/Array/from/elements-deleted-after.js b/test/built-ins/Array/from/elements-deleted-after.js index 02f7453293..bb040550c2 100644 --- a/test/built-ins/Array/from/elements-deleted-after.js +++ b/test/built-ins/Array/from/elements-deleted-after.js @@ -6,7 +6,6 @@ description: > Elements deleted after the call started and before visited are not visited esid: sec-array.from -es6id: 22.1.2.1 ---*/ var originalArray = [0, 1, -2, 4, -8, 16]; diff --git a/test/built-ins/Array/from/elements-updated-after.js b/test/built-ins/Array/from/elements-updated-after.js index 358e94b46e..96a9260aba 100644 --- a/test/built-ins/Array/from/elements-updated-after.js +++ b/test/built-ins/Array/from/elements-updated-after.js @@ -4,7 +4,6 @@ /*--- description: Elements are updated after the call to from esid: sec-array.from -es6id: 22.1.2.1 ---*/ var array = [127, 4, 8, 16, 32, 64, 128]; diff --git a/test/built-ins/Array/from/from-array.js b/test/built-ins/Array/from/from-array.js index 59258bdae3..ab77bd9460 100644 --- a/test/built-ins/Array/from/from-array.js +++ b/test/built-ins/Array/from/from-array.js @@ -4,7 +4,6 @@ /*--- description: Passing a valid array esid: sec-array.from -es6id: 22.1.2.1 ---*/ var array = [0, 'foo', , Infinity]; diff --git a/test/built-ins/Array/from/from-string.js b/test/built-ins/Array/from/from-string.js index 97ff33515e..c4df63f35b 100644 --- a/test/built-ins/Array/from/from-string.js +++ b/test/built-ins/Array/from/from-string.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Testing Array.from when passed a String author: Hank Yates (hankyates@gmail.com) ---*/ diff --git a/test/built-ins/Array/from/get-iter-method-err.js b/test/built-ins/Array/from/get-iter-method-err.js index 9aa92c0475..ad775b6973 100644 --- a/test/built-ins/Array/from/get-iter-method-err.js +++ b/test/built-ins/Array/from/get-iter-method-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error accessing items' `Symbol.iterator` attribute info: | [...] diff --git a/test/built-ins/Array/from/items-is-arraybuffer.js b/test/built-ins/Array/from/items-is-arraybuffer.js index e1bdb97895..d936efe736 100644 --- a/test/built-ins/Array/from/items-is-arraybuffer.js +++ b/test/built-ins/Array/from/items-is-arraybuffer.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Return empty array if items argument is an ArrayBuffer info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/items-is-null-throws.js b/test/built-ins/Array/from/items-is-null-throws.js index 5a9d6d044d..ca5fa8b3db 100644 --- a/test/built-ins/Array/from/items-is-null-throws.js +++ b/test/built-ins/Array/from/items-is-null-throws.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Throws a TypeError if items argument is null info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/iter-adv-err.js b/test/built-ins/Array/from/iter-adv-err.js index adc3f8141d..38b6181fcd 100644 --- a/test/built-ins/Array/from/iter-adv-err.js +++ b/test/built-ins/Array/from/iter-adv-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error advancing iterator info: | [...] diff --git a/test/built-ins/Array/from/iter-cstm-ctor-err.js b/test/built-ins/Array/from/iter-cstm-ctor-err.js index 8d0762d6b3..ff33ed6246 100644 --- a/test/built-ins/Array/from/iter-cstm-ctor-err.js +++ b/test/built-ins/Array/from/iter-cstm-ctor-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > Error creating object with custom constructor (traversed via iterator) info: | diff --git a/test/built-ins/Array/from/iter-cstm-ctor.js b/test/built-ins/Array/from/iter-cstm-ctor.js index d9a137695d..e73e60a02c 100644 --- a/test/built-ins/Array/from/iter-cstm-ctor.js +++ b/test/built-ins/Array/from/iter-cstm-ctor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Creating object with custom constructor (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-get-iter-err.js b/test/built-ins/Array/from/iter-get-iter-err.js index 02c6bcdce4..2beb85e6db 100644 --- a/test/built-ins/Array/from/iter-get-iter-err.js +++ b/test/built-ins/Array/from/iter-get-iter-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error creating iterator object info: | [...] diff --git a/test/built-ins/Array/from/iter-get-iter-val-err.js b/test/built-ins/Array/from/iter-get-iter-val-err.js index da9d85fe5b..896c671dfd 100644 --- a/test/built-ins/Array/from/iter-get-iter-val-err.js +++ b/test/built-ins/Array/from/iter-get-iter-val-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error retrieving value of iterator result info: | [...] diff --git a/test/built-ins/Array/from/iter-map-fn-args.js b/test/built-ins/Array/from/iter-map-fn-args.js index 56097d708c..ffba396935 100644 --- a/test/built-ins/Array/from/iter-map-fn-args.js +++ b/test/built-ins/Array/from/iter-map-fn-args.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > Arguments of mapping function (traversed via iterator) info: | diff --git a/test/built-ins/Array/from/iter-map-fn-err.js b/test/built-ins/Array/from/iter-map-fn-err.js index f7a26954e1..58ba309362 100644 --- a/test/built-ins/Array/from/iter-map-fn-err.js +++ b/test/built-ins/Array/from/iter-map-fn-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error invoking map function (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-map-fn-return.js b/test/built-ins/Array/from/iter-map-fn-return.js index 484ce71746..26f70ed51f 100644 --- a/test/built-ins/Array/from/iter-map-fn-return.js +++ b/test/built-ins/Array/from/iter-map-fn-return.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Value returned by mapping function (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-map-fn-this-arg.js b/test/built-ins/Array/from/iter-map-fn-this-arg.js index d10e9f8626..37574af7b6 100644 --- a/test/built-ins/Array/from/iter-map-fn-this-arg.js +++ b/test/built-ins/Array/from/iter-map-fn-this-arg.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > `this` value of mapping function with custom `this` argument (traversed via iterator) info: | diff --git a/test/built-ins/Array/from/iter-map-fn-this-non-strict.js b/test/built-ins/Array/from/iter-map-fn-this-non-strict.js index 0bb30453ea..47287fb16b 100644 --- a/test/built-ins/Array/from/iter-map-fn-this-non-strict.js +++ b/test/built-ins/Array/from/iter-map-fn-this-non-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > `this` value of mapping function in non-strict mode (traversed via iterator) info: | diff --git a/test/built-ins/Array/from/iter-map-fn-this-strict.js b/test/built-ins/Array/from/iter-map-fn-this-strict.js index d9a62dabc2..2cf702db44 100644 --- a/test/built-ins/Array/from/iter-map-fn-this-strict.js +++ b/test/built-ins/Array/from/iter-map-fn-this-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: > `this` value of mapping function in strict mode (traversed via iterator) info: | diff --git a/test/built-ins/Array/from/iter-set-elem-prop-err.js b/test/built-ins/Array/from/iter-set-elem-prop-err.js index 2f23b4f0cf..ff871f7cfe 100644 --- a/test/built-ins/Array/from/iter-set-elem-prop-err.js +++ b/test/built-ins/Array/from/iter-set-elem-prop-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error setting property on result value (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-set-elem-prop.js b/test/built-ins/Array/from/iter-set-elem-prop.js index 6f56116dbf..abbdf8d227 100644 --- a/test/built-ins/Array/from/iter-set-elem-prop.js +++ b/test/built-ins/Array/from/iter-set-elem-prop.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Setting property on result value (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-set-length-err.js b/test/built-ins/Array/from/iter-set-length-err.js index 4cd0e0001a..0b459ba03f 100644 --- a/test/built-ins/Array/from/iter-set-length-err.js +++ b/test/built-ins/Array/from/iter-set-length-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Error setting length of object (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/iter-set-length.js b/test/built-ins/Array/from/iter-set-length.js index c00ac5698f..05e084b2fd 100644 --- a/test/built-ins/Array/from/iter-set-length.js +++ b/test/built-ins/Array/from/iter-set-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Setting length of object (traversed via iterator) info: | [...] diff --git a/test/built-ins/Array/from/mapfn-is-not-callable-typeerror.js b/test/built-ins/Array/from/mapfn-is-not-callable-typeerror.js index 756fdd6f01..2275cb725a 100644 --- a/test/built-ins/Array/from/mapfn-is-not-callable-typeerror.js +++ b/test/built-ins/Array/from/mapfn-is-not-callable-typeerror.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Throws a TypeError if mapFn is not callable info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/from/mapfn-is-symbol-throws.js b/test/built-ins/Array/from/mapfn-is-symbol-throws.js index d7381221e1..58b248aba2 100644 --- a/test/built-ins/Array/from/mapfn-is-symbol-throws.js +++ b/test/built-ins/Array/from/mapfn-is-symbol-throws.js @@ -2,7 +2,6 @@ // This code is governed by the license found in the LICENSE file. /*--- esid: sec-array.from -es6id: 22.1.2.1 description: Throws a TypeError if mapFn is not callable (Symbol) info: | 22.1.2.1 Array.from ( items [ , mapfn [ , thisArg ] ] ) diff --git a/test/built-ins/Array/isArray/15.4.3.2-0-4.js b/test/built-ins/Array/isArray/15.4.3.2-0-4.js index 79302299fb..e6b44cd13c 100644 --- a/test/built-ins/Array/isArray/15.4.3.2-0-4.js +++ b/test/built-ins/Array/isArray/15.4.3.2-0-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.isarray -es5id: 15.4.3.2-0-4 description: Array.isArray return false if its argument is not an Array ---*/ diff --git a/test/built-ins/Array/of/length.js b/test/built-ins/Array/of/length.js index 7c6b281c25..2151f1060a 100644 --- a/test/built-ins/Array/of/length.js +++ b/test/built-ins/Array/of/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Array.of.length value and property descriptor info: | diff --git a/test/built-ins/Array/of/name.js b/test/built-ins/Array/of/name.js index 021bbc3657..5c07646b44 100644 --- a/test/built-ins/Array/of/name.js +++ b/test/built-ins/Array/of/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Array.of.name value and property descriptor info: | diff --git a/test/built-ins/Array/of/not-a-constructor.js b/test/built-ins/Array/of/not-a-constructor.js index 7574b7ff28..9c15fe739c 100644 --- a/test/built-ins/Array/of/not-a-constructor.js +++ b/test/built-ins/Array/of/not-a-constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Array.of is not a constructor. ---*/ diff --git a/test/built-ins/Array/of/of.js b/test/built-ins/Array/of/of.js index f928f3ad6c..233de7caff 100644 --- a/test/built-ins/Array/of/of.js +++ b/test/built-ins/Array/of/of.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Array.of property descriptor info: | diff --git a/test/built-ins/Array/of/proto-from-ctor-realm.js b/test/built-ins/Array/of/proto-from-ctor-realm.js index ba9ea4680d..6fbe30e9d1 100644 --- a/test/built-ins/Array/of/proto-from-ctor-realm.js +++ b/test/built-ins/Array/of/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: Default [[Prototype]] value derived from realm of the constructor info: | [...] diff --git a/test/built-ins/Array/of/return-a-custom-instance.js b/test/built-ins/Array/of/return-a-custom-instance.js index 75d48ebff1..a144677fca 100644 --- a/test/built-ins/Array/of/return-a-custom-instance.js +++ b/test/built-ins/Array/of/return-a-custom-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Returns an instance from a custom constructor. info: | diff --git a/test/built-ins/Array/of/return-a-new-array-object.js b/test/built-ins/Array/of/return-a-new-array-object.js index 4d83dbdfde..12e9ba947d 100644 --- a/test/built-ins/Array/of/return-a-new-array-object.js +++ b/test/built-ins/Array/of/return-a-new-array-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Returns a new Array. info: | diff --git a/test/built-ins/Array/of/return-abrupt-from-contructor.js b/test/built-ins/Array/of/return-abrupt-from-contructor.js index 4d64ae1aac..de955442f5 100644 --- a/test/built-ins/Array/of/return-abrupt-from-contructor.js +++ b/test/built-ins/Array/of/return-abrupt-from-contructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Return abrupt from this' constructor info: | diff --git a/test/built-ins/Array/of/return-abrupt-from-data-property-using-proxy.js b/test/built-ins/Array/of/return-abrupt-from-data-property-using-proxy.js index 7236c35ba9..605741a1a0 100644 --- a/test/built-ins/Array/of/return-abrupt-from-data-property-using-proxy.js +++ b/test/built-ins/Array/of/return-abrupt-from-data-property-using-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Return abrupt from Data Property creation info: | diff --git a/test/built-ins/Array/of/return-abrupt-from-data-property.js b/test/built-ins/Array/of/return-abrupt-from-data-property.js index f93208dedd..5822ef6fff 100644 --- a/test/built-ins/Array/of/return-abrupt-from-data-property.js +++ b/test/built-ins/Array/of/return-abrupt-from-data-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Return abrupt from Data Property creation info: | diff --git a/test/built-ins/Array/of/return-abrupt-from-setting-length.js b/test/built-ins/Array/of/return-abrupt-from-setting-length.js index 8a2284485c..259bce34e6 100644 --- a/test/built-ins/Array/of/return-abrupt-from-setting-length.js +++ b/test/built-ins/Array/of/return-abrupt-from-setting-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Return abrupt from setting the length property. info: | diff --git a/test/built-ins/Array/of/sets-length.js b/test/built-ins/Array/of/sets-length.js index 76155e0a6f..765ed93c78 100644 --- a/test/built-ins/Array/of/sets-length.js +++ b/test/built-ins/Array/of/sets-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.of -es6id: 22.1.2.3 description: > Calls the length setter if available info: | diff --git a/test/built-ins/Array/proto-from-ctor-realm.js b/test/built-ins/Array/proto-from-ctor-realm.js index 2cb0045d1f..59bd143510 100644 --- a/test/built-ins/Array/proto-from-ctor-realm.js +++ b/test/built-ins/Array/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array-constructor-array -es6id: 21.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Array/prototype/Symbol.iterator.js b/test/built-ins/Array/prototype/Symbol.iterator.js index a0146cd3be..5b3b829865 100644 --- a/test/built-ins/Array/prototype/Symbol.iterator.js +++ b/test/built-ins/Array/prototype/Symbol.iterator.js @@ -11,7 +11,6 @@ info: | should be writable and configurable, but not enumerable. includes: [propertyHelper.js] features: [Symbol.iterator] -es6id: 22.1.3.30 esid: sec-array.prototype-@@iterator ---*/ diff --git a/test/built-ins/Array/prototype/Symbol.unscopables/prop-desc.js b/test/built-ins/Array/prototype/Symbol.unscopables/prop-desc.js index 62976646cc..d26864acff 100644 --- a/test/built-ins/Array/prototype/Symbol.unscopables/prop-desc.js +++ b/test/built-ins/Array/prototype/Symbol.unscopables/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype-@@unscopables -es6id: 22.1.3.31 description: > Property descriptor for initial value of `Symbol.unscopables` property info: | diff --git a/test/built-ins/Array/prototype/concat/15.4.4.4-5-b-iii-3-b-1.js b/test/built-ins/Array/prototype/concat/15.4.4.4-5-b-iii-3-b-1.js index 3910be2f08..b256b0c1a6 100644 --- a/test/built-ins/Array/prototype/concat/15.4.4.4-5-b-iii-3-b-1.js +++ b/test/built-ins/Array/prototype/concat/15.4.4.4-5-b-iii-3-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.concat -es5id: 15.4.4.4-5-b-iii-3-b-1 description: > Array.prototype.concat will concat an Array when index property (read-only) exists in Array.prototype (Step 5.b.iii.3.b) diff --git a/test/built-ins/Array/prototype/concat/15.4.4.4-5-c-i-1.js b/test/built-ins/Array/prototype/concat/15.4.4.4-5-c-i-1.js index 61ecb1a260..f7b3a92419 100644 --- a/test/built-ins/Array/prototype/concat/15.4.4.4-5-c-i-1.js +++ b/test/built-ins/Array/prototype/concat/15.4.4.4-5-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.concat -es5id: 15.4.4.4-5-c-i-1 description: > Array.prototype.concat will concat an Array when index property (read-only) exists in Array.prototype (Step 5.c.i) diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-to-string-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-to-string-throws.js index 3baf72a4a6..c8e6a5d562 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-to-string-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-to-string-throws.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like length to string throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-value-of-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-value-of-throws.js index 7fac334e66..4ff54c415e 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-value-of-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-length-value-of-throws.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like length valueOf throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js index 62769543fa..1e6cfb8dff 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like negative length includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-primitive-non-number-length.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-primitive-non-number-length.js index 82cf5a7677..cc4506710d 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-primitive-non-number-length.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-primitive-non-number-length.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like primitive non number length includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-string-length.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-string-length.js index 8b94d65940..6323bd8cdb 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-string-length.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-string-length.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like string length includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-to-length-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-to-length-throws.js index 907a30b7b3..e5a440ca16 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-to-length-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-to-length-throws.js @@ -4,7 +4,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like to length throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like.js index bfdf3c8e9d..402f31c6cc 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat array like includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_holey-sloppy-arguments.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_holey-sloppy-arguments.js index 44082769bb..8e984e50aa 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_holey-sloppy-arguments.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_holey-sloppy-arguments.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat holey sloppy arguments includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_large-typed-array.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_large-typed-array.js index cb37746a29..38419927b1 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_large-typed-array.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_large-typed-array.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat large typed array includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_length-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_length-throws.js index c040d94a1f..eee6036f5a 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_length-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_length-throws.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat length throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_no-prototype.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_no-prototype.js index fc4ace9935..81e8ee2698 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_no-prototype.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_no-prototype.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat no prototype ---*/ assert.sameValue(Array.prototype.concat.prototype, void 0); diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_non-array.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_non-array.js index bd080ee42b..edb905f1e1 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_non-array.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_non-array.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: array-concat-non-array includes: [compareArray.js] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-throws.js index 605330051c..f72b237e1d 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-throws.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat sloppy arguments throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-with-dupes.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-with-dupes.js index a6bca8a0d2..abdaed774f 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-with-dupes.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments-with-dupes.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat sloppy arguments with dupes flags: [noStrict] includes: [compareArray.js] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments.js index 54e80acef2..50af3bbe33 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_sloppy-arguments.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat sloppy arguments includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_small-typed-array.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_small-typed-array.js index 1d5c1ecbbf..64ded54db5 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_small-typed-array.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_small-typed-array.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat small typed array includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-boolean-wrapper.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-boolean-wrapper.js index ed021358fb..83c3b9a6ae 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-boolean-wrapper.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-boolean-wrapper.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable boolean wrapper includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-function.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-function.js index 8ed6bf21cf..78a55f41e3 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-function.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-function.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable function includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-getter-throws.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-getter-throws.js index 8a0b64deee..38462cbe5a 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-getter-throws.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-getter-throws.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable getter throws features: [Symbol.isConcatSpreadable] ---*/ diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-number-wrapper.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-number-wrapper.js index d28acb7d15..540de0f36a 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-number-wrapper.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-number-wrapper.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable number wrapper includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js index 6a11c8eca0..e399fb389d 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable reg exp includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-sparse-object.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-sparse-object.js index 1c4aa7f2db..6afe99d2e3 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-sparse-object.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-sparse-object.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable sparse object includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-string-wrapper.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-string-wrapper.js index 65ba7d52a4..9e44307da9 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-string-wrapper.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-string-wrapper.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat Symbol.isConcatSpreadable string wrapper includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_strict-arguments.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_strict-arguments.js index 49dfc415c9..16683f7a81 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_strict-arguments.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_strict-arguments.js @@ -5,7 +5,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1_3 description: Array.prototype.concat strict arguments includes: [compareArray.js] features: [Symbol.isConcatSpreadable] diff --git a/test/built-ins/Array/prototype/concat/create-ctor-non-object.js b/test/built-ins/Array/prototype/concat/create-ctor-non-object.js index fe8e058654..e1570411c8 100644 --- a/test/built-ins/Array/prototype/concat/create-ctor-non-object.js +++ b/test/built-ins/Array/prototype/concat/create-ctor-non-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: > Behavior when `constructor` property is neither an Object nor undefined diff --git a/test/built-ins/Array/prototype/concat/create-ctor-poisoned.js b/test/built-ins/Array/prototype/concat/create-ctor-poisoned.js index 672d33acc5..d8a87ab249 100644 --- a/test/built-ins/Array/prototype/concat/create-ctor-poisoned.js +++ b/test/built-ins/Array/prototype/concat/create-ctor-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Abrupt completion from `constructor` property access info: | diff --git a/test/built-ins/Array/prototype/concat/create-non-array.js b/test/built-ins/Array/prototype/concat/create-non-array.js index b33667a9a8..dfb8f18f16 100644 --- a/test/built-ins/Array/prototype/concat/create-non-array.js +++ b/test/built-ins/Array/prototype/concat/create-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Constructor is ignored for non-Array values info: | diff --git a/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-array.js index 863bff2c1d..6a9ddc9b6b 100644 --- a/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Prefer Array constructor of current realm record info: | diff --git a/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js b/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js index 3a0f9a1966..e3aef0fd8c 100644 --- a/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js +++ b/test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Accept non-Array constructors from other realms info: | diff --git a/test/built-ins/Array/prototype/concat/create-proxy.js b/test/built-ins/Array/prototype/concat/create-proxy.js index ebd3bb2ad8..93e1d57e78 100644 --- a/test/built-ins/Array/prototype/concat/create-proxy.js +++ b/test/built-ins/Array/prototype/concat/create-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Species constructor of a Proxy object whose target is an array info: | diff --git a/test/built-ins/Array/prototype/concat/create-revoked-proxy.js b/test/built-ins/Array/prototype/concat/create-revoked-proxy.js index fb18d87a41..d7a09b7c7f 100644 --- a/test/built-ins/Array/prototype/concat/create-revoked-proxy.js +++ b/test/built-ins/Array/prototype/concat/create-revoked-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Abrupt completion from constructor that is a revoked Proxy object info: | diff --git a/test/built-ins/Array/prototype/concat/create-species-abrupt.js b/test/built-ins/Array/prototype/concat/create-species-abrupt.js index 3a89c85bfc..bd5649983b 100644 --- a/test/built-ins/Array/prototype/concat/create-species-abrupt.js +++ b/test/built-ins/Array/prototype/concat/create-species-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Species constructor returns an abrupt completion info: | diff --git a/test/built-ins/Array/prototype/concat/create-species-non-ctor.js b/test/built-ins/Array/prototype/concat/create-species-non-ctor.js index b3cf0fdda2..00ff522d06 100644 --- a/test/built-ins/Array/prototype/concat/create-species-non-ctor.js +++ b/test/built-ins/Array/prototype/concat/create-species-non-ctor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: > Behavior when the @@species attribute is a non-constructor object diff --git a/test/built-ins/Array/prototype/concat/create-species-null.js b/test/built-ins/Array/prototype/concat/create-species-null.js index 29486b5bb5..a53bee3331 100644 --- a/test/built-ins/Array/prototype/concat/create-species-null.js +++ b/test/built-ins/Array/prototype/concat/create-species-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: > A null value for the @@species constructor is interpreted as `undefined` diff --git a/test/built-ins/Array/prototype/concat/create-species-poisoned.js b/test/built-ins/Array/prototype/concat/create-species-poisoned.js index a6203df1b2..174ee3dfe5 100644 --- a/test/built-ins/Array/prototype/concat/create-species-poisoned.js +++ b/test/built-ins/Array/prototype/concat/create-species-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Abrupt completion from `@@species` property access info: | diff --git a/test/built-ins/Array/prototype/concat/create-species-undef.js b/test/built-ins/Array/prototype/concat/create-species-undef.js index 6a2aea17ea..129945ae00 100644 --- a/test/built-ins/Array/prototype/concat/create-species-undef.js +++ b/test/built-ins/Array/prototype/concat/create-species-undef.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/concat/create-species.js b/test/built-ins/Array/prototype/concat/create-species.js index a035008ed1..9ca5eb58db 100644 --- a/test/built-ins/Array/prototype/concat/create-species.js +++ b/test/built-ins/Array/prototype/concat/create-species.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Species constructor is used to create a new instance info: | diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-get-err.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-get-err.js index a6815d5458..ab9b4c4be3 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-get-err.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-get-err.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.1 esid: sec-array.prototype.concat description: Error thrown when accessing `Symbol.isConcatSpreadable` property info: | diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js index f871146bb4..126e0e27ed 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-isconcatspreadable -es6id: 22.1.3.1.1 description: Revoked proxy value produces a TypeError when supplied to IsArray info: | [...] diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy-revoked.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy-revoked.js index 7b973eb39a..f2ea3a5bd3 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy-revoked.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-isconcatspreadable -es6id: 22.1.3.1.1 description: > Revoked proxy value produces a TypeError during access of `Symbol.isConcatSpreadable` property diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js index 8528349ca9..f32368c003 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-isconcatspreadable -es6id: 22.1.3.1.1 description: > Proxies who final targets are arrays are considered spreadable info: | diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-falsey.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-falsey.js index e14e22ddf5..7fa664fbc0 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-falsey.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-falsey.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1 description: > The `Symbol.isConcatSpreadable` property is defined and coerces to `false` info: | diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-truthy.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-truthy.js index b6ddb2b11a..c18ab1d012 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-truthy.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-truthy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1 description: > The `Symbol.isConcatSpreadable` property is defined and coerces to `true` info: | diff --git a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-undefined.js b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-undefined.js index ce376b6e5a..1306800a36 100644 --- a/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-undefined.js +++ b/test/built-ins/Array/prototype/concat/is-concat-spreadable-val-undefined.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1 description: > The `Symbol.isConcatSpreadable` property is defined as the value `undefined` info: | diff --git a/test/built-ins/Array/prototype/concat/name.js b/test/built-ins/Array/prototype/concat/name.js index cd4120f9ce..366b524e5c 100644 --- a/test/built-ins/Array/prototype/concat/name.js +++ b/test/built-ins/Array/prototype/concat/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.concat -es6id: 22.1.3.1 description: > Array.prototype.concat.name is "concat". info: | diff --git a/test/built-ins/Array/prototype/copyWithin/coerced-values-end.js b/test/built-ins/Array/prototype/copyWithin/coerced-values-end.js index a1d4e04a47..ecbd6c021a 100644 --- a/test/built-ins/Array/prototype/copyWithin/coerced-values-end.js +++ b/test/built-ins/Array/prototype/copyWithin/coerced-values-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > end argument is coerced to an integer values. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/coerced-values-start.js b/test/built-ins/Array/prototype/copyWithin/coerced-values-start.js index 5789f7edea..4a3609e0e4 100644 --- a/test/built-ins/Array/prototype/copyWithin/coerced-values-start.js +++ b/test/built-ins/Array/prototype/copyWithin/coerced-values-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > start argument is coerced to an integer value. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/coerced-values-target.js b/test/built-ins/Array/prototype/copyWithin/coerced-values-target.js index 54465b97ab..9fbf4ecc8a 100644 --- a/test/built-ins/Array/prototype/copyWithin/coerced-values-target.js +++ b/test/built-ins/Array/prototype/copyWithin/coerced-values-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > target argument is coerced to an integer value. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/fill-holes.js b/test/built-ins/Array/prototype/copyWithin/fill-holes.js index 8d4202105f..8c0c71211b 100644 --- a/test/built-ins/Array/prototype/copyWithin/fill-holes.js +++ b/test/built-ins/Array/prototype/copyWithin/fill-holes.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Loop from each property, even empty holes. ---*/ diff --git a/test/built-ins/Array/prototype/copyWithin/length.js b/test/built-ins/Array/prototype/copyWithin/length.js index 6bac43ff8d..a48b43da25 100644 --- a/test/built-ins/Array/prototype/copyWithin/length.js +++ b/test/built-ins/Array/prototype/copyWithin/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: Array.prototype.copyWithin.length value and descriptor. info: | 22.1.3.3 Array.prototype.copyWithin (target, start [ , end ] ) diff --git a/test/built-ins/Array/prototype/copyWithin/name.js b/test/built-ins/Array/prototype/copyWithin/name.js index ca2d64d5d9..07f0ce08c2 100644 --- a/test/built-ins/Array/prototype/copyWithin/name.js +++ b/test/built-ins/Array/prototype/copyWithin/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Array.prototype.copyWithin.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-end.js b/test/built-ins/Array/prototype/copyWithin/negative-end.js index 81e97abfd8..22df7e8df5 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-end.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with negative end argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-end.js b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-end.js index 34b8374611..9285d408df 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-end.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with negative out of bounds end argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-start.js b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-start.js index e3002b70f0..a5dd431a4f 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-start.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with out of bounds negative start argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-target.js b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-target.js index f17ab8a8a6..e78c2a6d18 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-target.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-out-of-bounds-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with out of bounds negative target argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-start.js b/test/built-ins/Array/prototype/copyWithin/negative-start.js index 3989b288db..cda222a507 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-start.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with negative start argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/negative-target.js b/test/built-ins/Array/prototype/copyWithin/negative-target.js index 99844a4b8e..b1a4ebd463 100644 --- a/test/built-ins/Array/prototype/copyWithin/negative-target.js +++ b/test/built-ins/Array/prototype/copyWithin/negative-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Set values with negative target argument. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-end.js b/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-end.js index d20bc64c24..ebea5270dd 100644 --- a/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-end.js +++ b/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Max value of end position is the this.length. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-target-and-start.js b/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-target-and-start.js index 64f3c58540..cc75551e9b 100644 --- a/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-target-and-start.js +++ b/test/built-ins/Array/prototype/copyWithin/non-negative-out-of-bounds-target-and-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Max values of target and start positions are this.length. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/non-negative-target-and-start.js b/test/built-ins/Array/prototype/copyWithin/non-negative-target-and-start.js index 02a6bc4e78..d1840a720f 100644 --- a/test/built-ins/Array/prototype/copyWithin/non-negative-target-and-start.js +++ b/test/built-ins/Array/prototype/copyWithin/non-negative-target-and-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Copy values with non-negative target and start positions. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/non-negative-target-start-and-end.js b/test/built-ins/Array/prototype/copyWithin/non-negative-target-start-and-end.js index 4dbc5479cd..a3c02b63d2 100644 --- a/test/built-ins/Array/prototype/copyWithin/non-negative-target-start-and-end.js +++ b/test/built-ins/Array/prototype/copyWithin/non-negative-target-start-and-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Copy values with non-negative target, start and end positions. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/prop-desc.js b/test/built-ins/Array/prototype/copyWithin/prop-desc.js index 13f4e6510b..e79947b66b 100644 --- a/test/built-ins/Array/prototype/copyWithin/prop-desc.js +++ b/test/built-ins/Array/prototype/copyWithin/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: Property type and descriptor. info: | 22.1.3.3 Array.prototype.copyWithin (target, start [ , end ] ) diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-proxy-target.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-proxy-target.js index fcf61cb19d..1367d3a61c 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-proxy-target.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-proxy-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from deleting property value - using Proxy info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-target.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-target.js index cd06e733b5..9e33b33857 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-target.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from deleting property value on DeletePropertyOrThrow(O, toKey). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js index 159a8d9b43..5571432e2d 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from end as a Symbol. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end.js index a81b4ac32e..f6d856070f 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToInteger(end). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-get-start-value.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-get-start-value.js index b75de68b17..c571712af7 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-get-start-value.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-get-start-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from getting property value - Get(O, fromKey). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-has-start.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-has-start.js index 5cf11d59a5..3cde22443d 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-has-start.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-has-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from HasProperty(O, fromKey). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-set-target-value.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-set-target-value.js index ef414d61e9..15d77ffde0 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-set-target-value.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-set-target-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from setting property value - Set(O, toKey, fromVal, true). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js index 399be74c80..427adfe2eb 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from start as a Symbol. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start.js index 6694044417..fd3b287e0d 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToInteger(start). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target-as-symbol.js index 537779900f..b84580a3bd 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target-as-symbol.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from target as a Symbol. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target.js index 11a8174002..a52c8e88c6 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToInteger(target). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length-as-symbol.js index a865f323f2..72511a92cb 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length-as-symbol.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToLength(Get(O, "length")) where length is a Symbol. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length.js index d3287fa0dd..ff9ee3bf94 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToLength(Get(O, "length")). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this.js index 6cdc251eed..57456b7f65 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/copyWithin/return-this.js b/test/built-ins/Array/prototype/copyWithin/return-this.js index 360863bb4c..d60fd1bbf6 100644 --- a/test/built-ins/Array/prototype/copyWithin/return-this.js +++ b/test/built-ins/Array/prototype/copyWithin/return-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > Returns `this`. info: | diff --git a/test/built-ins/Array/prototype/copyWithin/undefined-end.js b/test/built-ins/Array/prototype/copyWithin/undefined-end.js index 6ef024c756..e81642c36e 100644 --- a/test/built-ins/Array/prototype/copyWithin/undefined-end.js +++ b/test/built-ins/Array/prototype/copyWithin/undefined-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.copywithin -es6id: 22.1.3.3 description: > If `end` is undefined, set final position to `this.length`. info: | diff --git a/test/built-ins/Array/prototype/entries/iteration-mutable.js b/test/built-ins/Array/prototype/entries/iteration-mutable.js index 708ac5f2a6..d64f24cbdd 100644 --- a/test/built-ins/Array/prototype/entries/iteration-mutable.js +++ b/test/built-ins/Array/prototype/entries/iteration-mutable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > New items in the array are accessible via iteration until iterator is "done". info: | diff --git a/test/built-ins/Array/prototype/entries/iteration.js b/test/built-ins/Array/prototype/entries/iteration.js index aa6a20f210..3abe18f81b 100644 --- a/test/built-ins/Array/prototype/entries/iteration.js +++ b/test/built-ins/Array/prototype/entries/iteration.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > The return is a valid iterator with the array's numeric properties. info: | diff --git a/test/built-ins/Array/prototype/entries/length.js b/test/built-ins/Array/prototype/entries/length.js index 35fdb6ec94..c1590f6aec 100644 --- a/test/built-ins/Array/prototype/entries/length.js +++ b/test/built-ins/Array/prototype/entries/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > Array.prototype.entries.length value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/entries/name.js b/test/built-ins/Array/prototype/entries/name.js index b3b06020cb..e940872aaf 100644 --- a/test/built-ins/Array/prototype/entries/name.js +++ b/test/built-ins/Array/prototype/entries/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > Array.prototype.entries.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/entries/prop-desc.js b/test/built-ins/Array/prototype/entries/prop-desc.js index f2f893eca1..7c7bc955d9 100644 --- a/test/built-ins/Array/prototype/entries/prop-desc.js +++ b/test/built-ins/Array/prototype/entries/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > Property type and descriptor. info: | diff --git a/test/built-ins/Array/prototype/entries/return-abrupt-from-this.js b/test/built-ins/Array/prototype/entries/return-abrupt-from-this.js index 6377010842..f11ab35284 100644 --- a/test/built-ins/Array/prototype/entries/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/entries/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/entries/returns-iterator-from-object.js b/test/built-ins/Array/prototype/entries/returns-iterator-from-object.js index ea6421539e..0eb0487950 100644 --- a/test/built-ins/Array/prototype/entries/returns-iterator-from-object.js +++ b/test/built-ins/Array/prototype/entries/returns-iterator-from-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > Creates an iterator from a custom object. info: | diff --git a/test/built-ins/Array/prototype/entries/returns-iterator.js b/test/built-ins/Array/prototype/entries/returns-iterator.js index 0874e3a1be..942d7fc2bf 100644 --- a/test/built-ins/Array/prototype/entries/returns-iterator.js +++ b/test/built-ins/Array/prototype/entries/returns-iterator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.entries -es6id: 22.1.3.4 description: > The method should return an Iterator instance. info: | diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-0-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-0-1.js index 91caa8675f..6a584dc00d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-0-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-0-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16 description: Array.prototype.every must exist as a function ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-1.js index 0a63b6a5ef..c710956a43 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-1 description: Array.prototype.every applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-10.js index f15a6e808f..45b5622eda 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-10 description: Array.prototype.every applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-11.js index d00e004244..c851023a80 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-11 description: Array.prototype.every applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-12.js index c2f9097f97..12da17ef6a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-12 description: Array.prototype.every applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-13.js index 7d41c47379..6829d7f96a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-13 description: Array.prototype.every applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-14.js index 2fc04c994f..0e60899519 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-14 description: Array.prototype.every applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-15.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-15.js index 8687f5e0fd..908db79aaa 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-15.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-15 description: Array.prototype.every applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-2.js index 6e95b6a711..676c567760 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-2 description: Array.prototype.every applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-3.js index 03be7b56d9..8d71fee300 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-3 description: Array.prototype.every applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-4.js index 0d88f961ed..d5e58c3821 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-4 description: Array.prototype.every applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-5.js index 7bd133c740..017e18f06d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-5 description: Array.prototype.every applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-6.js index 255a5afc24..69246f4448 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-6 description: Array.prototype.every applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-7.js index 4c68595edd..5fa4780d8b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-7 description: Array.prototype.every applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-8.js index e4ac131db2..e20ae5e349 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-8 description: Array.prototype.every applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-1-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-1-9.js index bf6992cf13..00eb56891b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-1-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-1-9 description: Array.prototype.every applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-1.js index 8b4d967f9a..925ba8667b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-1 description: > Array.prototype.every applied to Array-like object, 'length' is an own data property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-10.js index c895c286c2..5966963a59 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-10 description: > Array.prototype.every applied to Array-like object, 'length' is an inherited accessor property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-11.js index 9f2497b6aa..e9f4438a37 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-11 description: > Array.prototype.every applied to Array-like object, 'length' is an own accessor property without a get function diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-12.js index 4cc13deab8..1fc45ea849 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-12 description: > Array.prototype.every - 'length' is own accessor property without a get function that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-13.js index 0c03deb22d..c5ab813180 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-13 description: > Array.prototype.every applied to the Array-like object that 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-14.js index eb91b3e56c..b8a90d9889 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-14 description: > Array.prototype.every applied to the Array-like object that 'length' property doesn't exist diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-17.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-17.js index 7d4e3200c2..e9350a3f1e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-17.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-17 description: > Array.prototype.every applied to the Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-18.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-18.js index 41af43e8ce..eba756df6f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-18.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-18 description: > Array.prototype.every applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-19.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-19.js index c7c9512351..18cf7d01e4 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-19.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-19 description: > Array.prototype.every applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-2.js index bb1feb0624..f19ac640a0 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-2 description: Array.prototype.every - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-3.js index 203eaee8a3..6a58ac7379 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-3 description: > Array.prototype.every applied to Array-like object, 'length' is an own data property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-4.js index cebdab0872..8c3c45deba 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-4 description: > Array.prototype.every - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-5.js index 1f4ffc7a82..314d843ceb 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-5 description: > Array.prototype.every applied to Array-like object, 'length' is an own data property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-6.js index 264d43dd2b..31f4c36680 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-6 description: > Array.prototype.every applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-7.js index 9e29cd7151..8ff1c62f35 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-7 description: > Array.prototype.every applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-8.js index d3a3e96abc..8d603e2e6f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-8 description: > Array.prototype.every applied to Array-like object, 'length' is an own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-2-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-2-9.js index 4dd430d1b1..c100945038 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-2-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-2-9 description: > Array.prototype.every applied to Array-like object, 'length' is an own accessor property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-1.js index a72ca6863d..f9cd9b5871 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-1 description: Array.prototype.every - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-10.js index b381ef7d23..e5681b3dd1 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-10 description: > Array.prototype.every - value of 'length' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-11.js index ab5fa5744c..85abf7bb9c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-11 description: > Array.prototype.every - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-12.js index bdf1ee93eb..b04827404a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-12 description: > Array.prototype.every - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-13.js index 23c7342510..6572935b71 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-13 description: > Array.prototype.every - 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-14.js index c20b8194a2..b751b45209 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-14 description: Array.prototype.every - 'length' is a string containing +/-Infinity ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-15.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-15.js index 63ceb586e8..ca065edf33 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-15.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-15 description: > Array.prototype.every - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-16.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-16.js index ea0e8386cd..8452102ee8 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-16.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-16 description: > Array.prototype.every - 'length' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-17.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-17.js index 0125b2b77b..727c3587ac 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-17.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-17 description: > Array.prototype.every - 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-18.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-18.js index c06bc6c27f..f45ae5766f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-18.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-18 description: > Array.prototype.every - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-19.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-19.js index a2bc1211f7..da16c38417 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-19.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-19 description: > Array.prototype.every - value of 'length' is an Object which has an own toString method diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-2.js index fb8444d54d..c367dbc32d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-2 description: > Array.prototype.every on an Array-like object if 'length' is 1 (length overridden to true(type conversion)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-20.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-20.js index a642c0ad1c..d95128cf11 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-20.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-20 description: > Array.prototype.every - value of 'length' is an Object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-21.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-21.js index 7f57fb9f28..d1a523175c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-21.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-21 description: > Array.prototype.every - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-22.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-22.js index a0f549b953..ea25780714 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-22.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-22 description: > Array.prototype.every throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-23.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-23.js index 19f4be0b2d..0dfdb6396b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-23.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-23 description: > Array.prototype.every uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf methods diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-24.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-24.js index 88db175593..6bf399b021 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-24.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-24 description: > Array.prototype.every - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-25.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-25.js index d6a174f875..cc66fe0b25 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-25.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-25 description: Array.prototype.every - value of 'length' is a negative non-integer ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-29.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-29.js index eaf990b5b7..ed7b2f15a8 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-29.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-29 description: > Array.prototype.every - value of 'length' is boundary value (2^32 + 1) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-3.js index 4636ccf3ec..f3f81ee868 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-3 description: Array.prototype.every - value of 'length' is a number (value is 0) ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-4.js index 68a0bf50a7..417cf1ebda 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-4 description: Array.prototype.every - value of 'length' is a number (value is +0) ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-5.js index d041e7add3..5b70694b4c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-5 description: Array.prototype.every - value of 'length' is a number (value is -0) ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-6.js index 0ea6839cb5..c2d7e5342d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-6 description: > Array.prototype.every - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-3-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-3-7.js index 880c26aab8..253494a995 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-3-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-3-7 description: > Array.prototype.every - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-5-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-5-4.js index b3e03058ab..b3979209ad 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-5-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-5-4 description: > Array.prototype.every - thisArg is object from object template(prototype) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-5-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-5-5.js index 47ce23ac64..727812bd94 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-5-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-5-5 description: Array.prototype.every - thisArg is object from object template ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-5-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-5-6.js index a71c98ee2f..1361256588 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-5-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-5-6 description: Array.prototype.every - thisArg is function ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-5-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-5-7.js index ff38fcdc42..f2a6e04fa7 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-5-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-5-7 description: Array.prototype.every - built-in functions can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-5-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-5-9.js index 2757891428..f29fe03a54 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-5-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-5-9 description: Array.prototype.every - Function Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-1.js index 22bcfaff63..2792dbe688 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-1 description: > Array.prototype.every considers new elements added to array after the call diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-2.js index 47d3ed4e52..9ab850456a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-2 description: > Array.prototype.every considers new value of elements in array after the call diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-3.js index 08531fe619..bdd1c18987 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-3 description: > Array.prototype.every doesn't visit deleted elements in array after the call diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-4.js index 9cbb2eda08..54516058fd 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-4 description: > Array.prototype.every doesn't visit deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-5.js index c4c062bdff..9ebefe9db1 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-5 description: > Array.prototype.every doesn't consider newly added elements in sparse array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-6.js index 45bcdd29a1..f0b15a60d9 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-6 description: > Array.prototype.every visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-7.js index d25bd744d2..9fdec1b005 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-7 description: > Array.prototype.every - Deleting the array itself within the callbackfn of Array.prototype.every is successful once diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-8.js index ff2f0f8bed..ed8a20375b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-8 description: Array.prototype.every - no observable effects occur if len is 0 ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-9.js index c1bbdfc1b1..151c7575e8 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-9 description: > Array.prototype.every - modifications to length don't change number of iterations diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-1.js index abcf91365c..9adc22b538 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-1 description: > Array.prototype.every - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-10.js index 913796b1f9..007ee48e87 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-10 description: > Array.prototype.every - deleting property of prototype causes prototype index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-11.js index c9ff957cba..56d211ff4b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-11 description: > Array.prototype.every - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-12.js index 63282ca554..0810aa6882 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-12 description: > Array.prototype.every - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-13.js index 26f3f17d17..6576458634 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-13 description: > Array.prototype.every - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-14.js index a017ff9643..bd5a602881 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-14 description: > Array.prototype.every - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-15.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-15.js index eeb2786e3b..d528fb1bff 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-15.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-15 description: > Array.prototype.every - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-16.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-16.js index 2bd39ef0ab..bc61b8e990 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-16.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-16 description: > Array.prototype.every - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-2.js index 56c5b404f3..f4afa78631 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-2 description: Array.prototype.every - added properties in step 2 are visible here ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-3.js index ca526b8ca2..51cc017987 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-3 description: > Array.prototype.every - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-4.js index 691affd2cc..a6b9ea6213 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-4 description: > Array.prototype.every - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-5.js index 75cff0bfed..550d7bf360 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-5 description: > Array.prototype.every - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-6.js index 27663980cc..7b3273e726 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-6 description: > Array.prototype.every - properties can be added to prototype after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-7.js index 92daa04a19..02660da078 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-7 description: > Array.prototype.every - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-8.js index 76f5f1cc01..2717f8acb9 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-8 description: > Array.prototype.every - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-9.js index 9159db9860..72a9c1adce 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-b-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-b-9 description: > Array.prototype.every - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-1.js index fd1e28b5f0..caf2aefaf3 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-1 description: > Array.prototype.every - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-10.js index 653e5e2445..227e7e5ba1 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-10 description: > Array.prototype.every - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-11.js index 4168c98f94..66c47aebab 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-11 description: > Array.prototype.every - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-12.js index c1f29b18b8..c4aae1aebc 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-12 description: > Array.prototype.every - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-13.js index 5ffb1d5444..6420fd9f0f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-13 description: > Array.prototype.every - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-14.js index 1cf1f75a2b..0cd4870a79 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-14 description: > Array.prototype.every - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-15.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-15.js index aab698397b..ea2b47ed35 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-15.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-15 description: > Array.prototype.every - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-16.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-16.js index c249d76b1e..34b240856f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-16.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-16 description: > Array.prototype.every - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-17.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-17.js index 9b52fef8fa..e7047e32ef 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-17.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-17 description: > Array.prototype.every - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-18.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-18.js index 300d32b828..636c2a9368 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-18.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-18 description: > Array.prototype.every - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-19.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-19.js index cc150375a8..42e476c082 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-19.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-19 description: > Array.prototype.every - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-2.js index 5afcd1e0b7..2adbe0125a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-2 description: > Array.prototype.every - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-20.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-20.js index 8a5fa31391..c9b60e5bfc 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-20.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-20 description: > Array.prototype.every - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-21.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-21.js index b6d06142ec..f00e3f7be5 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-21.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-21 description: > Array.prototype.every - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-22.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-22.js index 9477b201fd..cd8cda0183 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-22.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-22 description: > Array.prototype.every - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-25.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-25.js index c39d506641..45a4127d63 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-25.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-25 description: > Array.prototype.every - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-26.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-26.js index 3e1c7da804..1e0e65999f 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-26.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-26 description: > Array.prototype.every - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-27.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-27.js index 2002d812a1..026205b09e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-27.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-27 description: > Array.prototype.every - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-28.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-28.js index 425efe5899..28597fb504 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-28.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-28 description: > Array.prototype.every - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-29.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-29.js index 90c121c972..fff2269018 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-29.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-29 description: > Array.prototype.every - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-3.js index d0eac70c03..f91213a6f2 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-3 description: > Array.prototype.every - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-30.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-30.js index 04f0d51381..319227386d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-30.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-30 description: > Array.prototype.every - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-31.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-31.js index b28796ac80..9bdebf807b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-31.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-31 description: > Array.prototype.every - unhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-4.js index d9e81c6df3..b5bbaa6916 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-4 description: > Array.prototype.every - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-5.js index 25c2670786..f7b7cbe2fd 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-5 description: > Array.prototype.every - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-6.js index 9575fe8adb..6be1224933 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-6 description: > Array.prototype.every - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-7.js index 10d9ab7dbb..a8dc19a2cb 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-7 description: > Array.prototype.every - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-8.js index 507af757aa..4e1c925d1e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-8 description: > Array.prototype.every - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-9.js index 49392cb8a7..f354c1c710 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-i-9 description: > Array.prototype.every - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-1.js index fff7c361cd..e3961d4800 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-1 description: Array.prototype.every - callbackfn called with correct parameters ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-10.js index 118130921c..5e00611657 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-10 description: > Array.prototype.every - callbackfn is called with 1 formal parameter diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-11.js index 1ed6ecb0dc..8f9e7bc2f1 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-11 description: > Array.prototype.every - callbackfn is called with 2 formal parameter diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-12.js index 62eefe55bb..caa54a9fa0 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-12 description: > Array.prototype.every - callbackfn is called with 3 formal parameter diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-13.js index 8f30c0a8c4..84e992759b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-13 description: > Array.prototype.every - callbackfn that uses arguments object to get parameter value diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-16.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-16.js index 379efe7654..0911704608 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-16.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-16 description: > Array.prototype.every - 'this' of 'callbackfn' is a Boolean object when T is not an object (T is a boolean primitive) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-17.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-17.js index f9d83678ec..15acc1a46b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-17.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-17 description: > Array.prototype.every -'this' of 'callbackfn' is a Number object when T is not an object (T is a number primitive) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-18.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-18.js index 17c1668bc2..3317e771dc 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-18.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-18 description: > Array.prototype.every - 'this' of 'callbackfn' is an String object when T is not an object (T is a string primitive) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-19.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-19.js index cc7626465e..dfc3dc5e5e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-19.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-19 description: Array.prototype.every - non-indexed properties are not called ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-2.js index daacdfda48..7602783c65 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-2 description: Array.prototype.every - callbackfn takes 3 arguments ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-20.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-20.js index 23fe1f4c11..023a097c71 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-20.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-20 description: > Array.prototype.every - callbackfn called with correct parameters (thisArg is correct) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-21.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-21.js index 4153657136..50cb737bf9 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-21.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-21 description: > Array.prototype.every - callbackfn called with correct parameters (kValue is correct) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-22.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-22.js index bd56fc0a95..7f7b9477d6 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-22.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-22 description: > Array.prototype.every - callbackfn called with correct parameters (the index k is correct) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-23.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-23.js index 59a1e55662..531713c24c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-23.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-23 description: > Array.prototype.every - callbackfn called with correct parameters (this object O is correct) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-3.js index f35df89130..8803a8df15 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-3 description: > Array.prototype.every immediately returns false if callbackfn returns false diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-4.js index 07a4d691a6..3a19e01bc1 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-4 description: > Array.prototype.every - k values are passed in ascending numeric order diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-5.js index f604f96720..0a023d5c87 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-5 description: > Array.prototype.every - k values are accessed during each iteration and not prior to starting the loop on an Array diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-6.js index df9f83143c..e18dabbe02 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-6 description: Array.prototype.every - arguments to callbackfn are self consistent ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-7.js index c1a6345d83..422e9eeeec 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-7 description: > Array.prototype.every - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-8.js index 6f015b207b..17aca70f51 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-8 description: > Array.prototype.every - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-9.js index b033642755..49f55c2b2b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-ii-9 description: > Array.prototype.every - callbackfn is called with 0 formal parameter diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-1.js index bafc7b8411..f851822201 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-1 description: Array.prototype.every - return value of callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-10.js index f495dd02c2..bfdc66ab86 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-10 description: > Array.prototype.every - return value of callbackfn is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-11.js index b761964aef..fcb7f50361 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-11 description: > Array.prototype.every - return value of callbackfn is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-12.js index 0ac2e55360..2b62cdf0fc 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-12 description: > Array.prototype.every - return value of callbackfn is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-13.js index 931cb99cae..0b6bf79bb5 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-13 description: > Array.prototype.every - return value of callbackfn is an empty string diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-14.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-14.js index ce75448e91..a2987fcf48 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-14.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-14 description: > Array.prototype.every - return value of callbackfn is a non-empty string diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-15.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-15.js index 0ab89ec096..e9e3a8de30 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-15.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-15 description: > Array.prototype.every - return value of callbackfn is a Function object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-16.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-16.js index f7f6f68734..6a0c8e3eb4 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-16.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-16 description: > Array.prototype.every - return value of callbackfn is an Array object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-17.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-17.js index 273fb64fd0..2286a7f61a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-17.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-17 description: > Array.prototype.every - return value of callbackfn is a String object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-18.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-18.js index 7cde6eabfe..0aa7721c86 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-18.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-18 description: > Array.prototype.every - return value of callbackfn is a Boolean object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-19.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-19.js index 7306e5e453..045826db32 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-19.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-19 description: > Array.prototype.every - return value of callbackfn is a Number object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-2.js index 62e4d05893..8f5ced2d4e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-2 description: Array.prototype.every - return value of callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-20.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-20.js index 2026f6357a..1685bfa6e8 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-20.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-20 description: > Array.prototype.every - return value of callbackfn is the Math object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-21.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-21.js index 3b16afa42c..c527cf763e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-21.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-21 description: Array.prototype.every - return value of callbackfn is a Date object ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-22.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-22.js index 3616be1410..618a351ce7 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-22.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-22 description: > Array.prototype.every - return value of callbackfn is a RegExp object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-23.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-23.js index 87151094b2..a3182aa587 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-23.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-23 description: > Array.prototype.every - return value of callbackfn is the JSON object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-24.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-24.js index 7141b6a713..4676dff2d4 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-24.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-24 description: > Array.prototype.every - return value of callbackfn is an Error object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-25.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-25.js index 8efc3f1743..ee22030867 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-25.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-25 description: > Array.prototype.every - return value of callbackfn is the Arguments object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-27.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-27.js index 2b650660b5..36e3ec5e18 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-27.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-27 description: > Array.prototype.every - return value of callbackfn is the global object diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-28.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-28.js index 0475c7ff59..8402fe761c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-28.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-28 description: Array.prototype.every - false prevents further side effects ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-29.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-29.js index 7571d0ec3d..8948a9cd48 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-29.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-29 description: > Array.prototype.every - return value (new Boolean(false)) of callbackfn is treated as true value diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-3.js index bcd7891c73..3173ad45b8 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-3 description: > Array.prototype.every - return value of callbackfn is a boolean (value is false) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-4.js index 34469360ca..7b71845232 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-4 description: > Array.prototype.every - return value of callbackfn is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-5.js index b1ce805acc..62fe4f604b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-5 description: > Array.prototype.every - return value of callbackfn is a number (value is 0) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-6.js index 5ca0058652..52742c18b9 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-6 description: > Array.prototype.every - return value of callbackfn is a number (value is +0) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-7.js index 3b152c86bd..80df1eeb22 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-7 description: > Array.prototype.every - return value of callbackfn is a nunmber (value is -0) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-8.js index 0c2b63f001..41cb3e8acb 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-8 description: > Array.prototype.every - return value of callbackfn is a number (value is positive number) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-9.js b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-9.js index 1830a7d9af..f7cfbcd14d 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-9.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-7-c-iii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-7-c-iii-9 description: > Array.prototype.every - return value of callbackfn is a number (value is negative number) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-1.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-1.js index e5fb2db836..baa78f14ab 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-1.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-1 description: Array.prototype.every returns true if 'length' is 0 (empty array) ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-10.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-10.js index a865a6c4b8..d71a9c3bad 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-10.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-10 description: Array.prototype.every - subclassed array when length is reduced ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-11.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-11.js index b407fe4e7a..ed6fd3656e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-11.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-11 description: > Array.prototype.every returns true when all calls to callbackfn return true diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-12.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-12.js index 7100aecd52..907172132c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-12.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-12 description: > Array.prototype.every doesn't mutate the array on which it is called on diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-13.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-13.js index 66b56af96b..879eda959a 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-13.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-13 description: Array.prototype.every doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-2.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-2.js index 90ef805f65..a1db8e1005 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-2.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-2 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-3.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-3.js index 746ea3c4d9..1142a6bf60 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-3.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-3 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-4.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-4.js index 802f85d327..5332b1764b 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-4.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-4 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-5.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-5.js index cd8513fb49..0ae6aa859e 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-5.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-5 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-6.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-6.js index 17d0d88341..1f423b558c 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-6.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-6 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-7.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-7.js index f23dc8cff1..0ec3de2ae7 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-7.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-7 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf (toString)) diff --git a/test/built-ins/Array/prototype/every/15.4.4.16-8-8.js b/test/built-ins/Array/prototype/every/15.4.4.16-8-8.js index 75f2878c3d..3e5d5f88c4 100644 --- a/test/built-ins/Array/prototype/every/15.4.4.16-8-8.js +++ b/test/built-ins/Array/prototype/every/15.4.4.16-8-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es5id: 15.4.4.16-8-8 description: > Array.prototype.every returns true if 'length' is 0 (subclassed Array, length overridden with [] diff --git a/test/built-ins/Array/prototype/every/name.js b/test/built-ins/Array/prototype/every/name.js index 96297dafc5..058bce2558 100644 --- a/test/built-ins/Array/prototype/every/name.js +++ b/test/built-ins/Array/prototype/every/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.every -es6id: 22.1.3.5 description: > Array.prototype.every.name is "every". info: | diff --git a/test/built-ins/Array/prototype/fill/coerced-indexes.js b/test/built-ins/Array/prototype/fill/coerced-indexes.js index bc6f707e84..0b064cf5d4 100644 --- a/test/built-ins/Array/prototype/fill/coerced-indexes.js +++ b/test/built-ins/Array/prototype/fill/coerced-indexes.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Fills elements from coerced to Integer `start` and `end` values info: | diff --git a/test/built-ins/Array/prototype/fill/fill-values-custom-start-and-end.js b/test/built-ins/Array/prototype/fill/fill-values-custom-start-and-end.js index ce34f42d8b..ef23dc53ec 100644 --- a/test/built-ins/Array/prototype/fill/fill-values-custom-start-and-end.js +++ b/test/built-ins/Array/prototype/fill/fill-values-custom-start-and-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Fills all the elements from a with a custom start and end indexes. info: | diff --git a/test/built-ins/Array/prototype/fill/fill-values-relative-end.js b/test/built-ins/Array/prototype/fill/fill-values-relative-end.js index df80df3c21..67131c43f7 100644 --- a/test/built-ins/Array/prototype/fill/fill-values-relative-end.js +++ b/test/built-ins/Array/prototype/fill/fill-values-relative-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Fills all the elements from a with a custom start index. info: | diff --git a/test/built-ins/Array/prototype/fill/fill-values-relative-start.js b/test/built-ins/Array/prototype/fill/fill-values-relative-start.js index 28adbda0eb..9be8548c4b 100644 --- a/test/built-ins/Array/prototype/fill/fill-values-relative-start.js +++ b/test/built-ins/Array/prototype/fill/fill-values-relative-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Fills all the elements from a with a custom start index. info: | diff --git a/test/built-ins/Array/prototype/fill/fill-values.js b/test/built-ins/Array/prototype/fill/fill-values.js index 43f119f27e..f1b08dd88b 100644 --- a/test/built-ins/Array/prototype/fill/fill-values.js +++ b/test/built-ins/Array/prototype/fill/fill-values.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Fills all the elements with `value` from a defaul start and index. info: | diff --git a/test/built-ins/Array/prototype/fill/length.js b/test/built-ins/Array/prototype/fill/length.js index 798bd8c142..ce500d5f66 100644 --- a/test/built-ins/Array/prototype/fill/length.js +++ b/test/built-ins/Array/prototype/fill/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: Array.prototype.fill.length value and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/fill/name.js b/test/built-ins/Array/prototype/fill/name.js index 2af8ea3f44..409f1c3588 100644 --- a/test/built-ins/Array/prototype/fill/name.js +++ b/test/built-ins/Array/prototype/fill/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Array.prototype.fill.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/fill/prop-desc.js b/test/built-ins/Array/prototype/fill/prop-desc.js index b6ab80af1b..6dc6d96049 100644 --- a/test/built-ins/Array/prototype/fill/prop-desc.js +++ b/test/built-ins/Array/prototype/fill/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: Property type and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-end-as-symbol.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-end-as-symbol.js index 73982ef6d6..a76502240d 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-end-as-symbol.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-end-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToInteger(end) as a Symbol. info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-end.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-end.js index 49aa7715c3..d2fb02d858 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-end.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-end.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToInteger(end). info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-setting-property-value.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-setting-property-value.js index d132561da9..a73e29cf09 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-setting-property-value.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-setting-property-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from setting a property value. info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-start-as-symbol.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-start-as-symbol.js index 9a12634ece..ca9f6b9926 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-start-as-symbol.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-start-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToInteger(start) as a Symbol. info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-start.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-start.js index 42a5219b3c..f21bde2e2f 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-start.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-start.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToInteger(start). info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length-as-symbol.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length-as-symbol.js index 9ec1cca239..2f2947d3d6 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length-as-symbol.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToLength(Get(O, "length")) where length is a Symbol. info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length.js index 423a3cbe15..ef7a58ac78 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-this-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToLength(Get(O, "length")). info: | diff --git a/test/built-ins/Array/prototype/fill/return-abrupt-from-this.js b/test/built-ins/Array/prototype/fill/return-abrupt-from-this.js index fc76d36ed6..c3f5fd8e18 100644 --- a/test/built-ins/Array/prototype/fill/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/fill/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/fill/return-this.js b/test/built-ins/Array/prototype/fill/return-this.js index e87b2cc3ab..67de10324c 100644 --- a/test/built-ins/Array/prototype/fill/return-this.js +++ b/test/built-ins/Array/prototype/fill/return-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.fill -es6id: 22.1.3.6 description: > Returns `this`. info: | diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-1.js index c9b5616764..df778437d1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-1 description: Array.prototype.filter applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-10.js index 9fa42cba0a..fcf4a2a821 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-10 description: Array.prototype.filter applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-11.js index 19703f1905..438185e0c1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-11 description: Array.prototype.filter applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-12.js index 09a5dbb370..872500bb89 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-12 description: Array.prototype.filter applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-13.js index fbeaacc89e..91044f6a54 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-13 description: Array.prototype.filter applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-14.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-14.js index 0b9f3060a5..2faebad6f3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-14.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-14 description: Array.prototype.filter applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-15.js index 0be84b2563..71265a4dbd 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-15 description: Array.prototype.filter applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-2.js index 70e775afee..6244828554 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-2 description: Array.prototype.filter applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-3.js index 95aaebd9e2..7664bae8f7 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-3 description: Array.prototype.filter applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-4.js index e7b7d2fdc2..7cb1e07477 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-4 description: Array.prototype.filter applied to Boolean Object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-5.js index 4e8c4ffd54..3472212bcd 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-5 description: Array.prototype.filter applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-6.js index 6f4bb4eb26..1f30b76f87 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-6 description: Array.prototype.filter applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-7.js index c7a70ad25a..6b62c78e43 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-7 description: Array.prototype.filter applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-8.js index 35438987c0..cdc2044922 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-8 description: Array.prototype.filter applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-1-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-1-9.js index 01e194a56c..66716c62c2 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-1-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-1-9 description: Array.prototype.filter applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-10-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-10-1.js index 8034699546..88144c5ee0 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-10-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-10-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-10-1 description: > Array.prototype.filter doesn't mutate the Array on which it is called on diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-10-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-10-2.js index 5bd456a8e8..e660193c6f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-10-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-10-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-10-2 description: > Array.prototype.filter returns new Array with length equal to number of true returned by callbackfn diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-10-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-10-3.js index a20ae4f186..5a65c3f657 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-10-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-10-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-10-3 description: Array.prototype.filter - subclassed array when length is reduced ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-10-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-10-4.js index 10e8fa0292..c5b90fcb22 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-10-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-10-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-10-4 description: Array.prototype.filter doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-1.js index 68c19c6a66..bb44e54658 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-1 description: > Array.prototype.filter applied to Array-like object, 'length' is own data property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-10.js index 683217637b..d6349ea608 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-10 description: > Array.prototype.filter applied to Array-like object, 'length' is inherited accessor property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-11.js index 8a55f62fb7..d1e9156ed8 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-11 description: > Array.prototype.filter applied to Array-like object, 'length' is own accessor property without a get function diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-12.js index b5983c2805..616537e2e6 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-12 description: > Array.prototype.filter - 'length' is own accessor property without a get function that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-13.js index 25652960d2..bb45ba93de 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-13 description: > Array.prototype.filter applied to the Array-like object that 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-14.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-14.js index 545d914e60..8ff8541da1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-14.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-14 description: > Array.prototype.filter applied to the Array-like object that 'length property doesn't exist diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-17.js index 34c579c77d..52c71c8f78 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-17 description: > Array.prototype.filter applied to the Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-18.js index c13206d983..cf59cb2cb8 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-18 description: > Array.prototype.filter applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-19.js index 9bd2ef1c68..3e5bf98a50 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-19 description: > Array.prototype.filter applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-2.js index 8e071501ca..36c9f23ea1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-2 description: Array.prototype.filter - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-3.js index 4d9c4e4149..83a2657a3f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-3 description: > Array.prototype.filter applied to Array-like object, 'length' is an own data property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-4.js index 73ecc9ed19..7e42c002d5 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-4 description: > Array.prototype.filter - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-5.js index e165dbc06d..ca5810cac4 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-5 description: > Array.prototype.filter to Array-like object, 'length' is an own data property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-6.js index 9a8144cfcf..d8c2c30f74 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-6 description: > Array.prototype.filter applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-7.js index ba40ddd23a..83be4f5a81 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-7 description: > Array.prototype.filter applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-8.js index e57b212287..4d1bb5f2f7 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-8 description: > Array.prototype.filter applied to Array-like object, 'length' is own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-2-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-2-9.js index 684b01b09a..539ab131c9 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-2-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-2-9 description: > Array.prototype.filter applied to Array-like object, 'length' is an own accessor property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-1.js index be48ea578f..f09c70dbb4 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-1 description: Array.prototype.filter - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-10.js index 8ef7f0477b..78edebc2ab 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-10 description: > Array.prototype.filter - value of 'length' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-11.js index 3bedc20edb..c196981cd3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-11 description: > Array.prototype.filter - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-12.js index bab103450a..c7848e0b54 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-12 description: > Array.prototype.filter - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-13.js index 01d01c2561..065a00e02a 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-13 description: > Array.prototype.filter - 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-14.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-14.js index 03bcf8a29d..ba53f0e604 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-14.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-14 description: Array.prototype.filter - 'length' is a string containing -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-15.js index 7cc2cb5f85..8efdf4d790 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-15 description: > Array.prototype.filter - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-16.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-16.js index 1e447f105a..b8a637a7b2 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-16.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-16 description: > Array.prototype.filter - 'length' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-17.js index a3c2bf7fad..c657bbd944 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-17 description: > Array.prototype.filter - 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-18.js index b42c4c5af0..4e871292d3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-18 description: > Array.prototype.filter - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-19.js index 11ba067928..b04c0be17b 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-19 description: > Array.prototype.filter - value of 'length' is an Object which has an own toString method. diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-2.js index 4c87b6e3d1..ec9714c2dd 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-2 description: > Array.prototype.filter applied on an Array-like object if 'length' is 1 (length overridden to true(type conversion)) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-20.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-20.js index 7b7b93e5b9..edafa9fa1c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-20.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-20 description: > Array.prototype.filter - value of 'length' is an Object which has an own valueOf method. diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-21.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-21.js index c65ba9ca50..97c9ae3000 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-21.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-21 description: > Array.prototype.filter - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-22.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-22.js index 0e4bf36715..4082722e84 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-22.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-22 description: > Array.prototype.filter throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-23.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-23.js index c02b3f301c..7fb3c11c56 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-23.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-23 description: > Array.prototype.filter uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf methods diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-24.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-24.js index a2cc49a04f..9ded36bdaf 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-24.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-24 description: > Array.prototype.filter - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-25.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-25.js index f32cac6948..83bcd65a95 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-25.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-25 description: > Array.prototype.filter - value of 'length' is a negative non-integer diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-3.js index 53fd3ab2cc..dd17c0c373 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-3 description: Array.prototype.filter - value of 'length' is a number (value is 0) ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-4.js index d0afc2288c..bd3c60eb0c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-4 description: > Array.prototype.filter - value of 'length' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-5.js index 675a41cb28..99de3d2595 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-5 description: > Array.prototype.filter - value of 'length' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-6.js index 44e5a2aa1c..a0cb70dfca 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-6 description: > Array.prototype.filter - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-7.js index b9003218fc..9447cc8df3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-7 description: > Array.prototype.filter - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-3-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-3-9.js index 149c2011ad..4eb4ccc8b7 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-3-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-3-9 description: > Array.prototype.filter - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-1.js index ac03e0fc92..087cc49380 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-1 description: Array.prototype.filter throws TypeError if callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-10.js index bf2dabe141..1e3a13cebe 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-10 description: > Array.prototype.filter - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-11.js index 6cefc8ce1e..9de3ce7471 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-11 description: > Array.prototype.filter - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-12.js index dce334c244..13ddf995b3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-12 description: Array.prototype.filter - 'callbackfn' is a function ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-15.js index 70d48daa72..2f34e3610c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-15 description: > Array.prototype.filter - calling with no callbackfn is the same as passing undefined for callbackfn diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-2.js index 511003bbf6..09eda71383 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-2 description: > Array.prototype.filter throws ReferenceError if callbackfn is unreferenced diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-3.js index 0e557696d4..793b78fa69 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-3 description: Array.prototype.filter throws TypeError if callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-4.js index d49c8355ce..72cac5fae7 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-4 description: Array.prototype.filter throws TypeError if callbackfn is boolean ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-5.js index d5a3b5289d..0b1af18436 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-5 description: Array.prototype.filter throws TypeError if callbackfn is number ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-6.js index 5f9d1386bb..cce125bca6 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-6 description: Array.prototype.filter throws TypeError if callbackfn is string ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-7.js index f9e4254274..10cd93484b 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-7 description: > Array.prototype.filter throws TypeError if callbackfn is Object without [[Call]] internal method diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-8.js index cde11fbf23..49c9e89ffc 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-8 description: > Array.prototype.filter - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-4-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-4-9.js index 45ba29f89f..393691500c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-4-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-4-9 description: > Array.prototype.filter - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-1-s.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-1-s.js index ebbd6c1a48..1f94a305e1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-1-s.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-1-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-1-s description: Array.prototype.filter - thisArg not passed to strict callbackfn flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-1.js index fe1b290574..3f3fed4b60 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-1 description: Array.prototype.filter - thisArg is passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-10.js index a5afd46822..0052636462 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-10 description: Array.prototype.filter - Array Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-11.js index 0ca6f9f66c..c9cd697121 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-11 description: Array.prototype.filter - String Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-12.js index 2d7cef46de..2239d88761 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-12 description: Array.prototype.filter - Boolean Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-13.js index d5cb60c89c..9233416403 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-13 description: Array.prototype.filter - Number Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-14.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-14.js index e455d8d4c2..9047114643 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-14.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-14 description: Array.prototype.filter - the Math object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-15.js index 596addb58d..2193c40150 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-15 description: Array.prototype.filter - Date Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-16.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-16.js index beafca6fd1..acbdab4409 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-16.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-16 description: Array.prototype.filter - RegExp Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-17.js index 569a7d691c..1771770036 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-17 description: Array.prototype.filter - the JSON object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-18.js index 03516a9356..3b9884110f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-18 description: Array.prototype.filter - Error Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-19.js index 16869222c0..a403a46227 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-19 description: > Array.prototype.filter - the Arguments object can be used as thisArg diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-2.js index 01a3a94d6c..d2d1669630 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-2 description: Array.prototype.filter - thisArg is Object ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-21.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-21.js index 1e1230bc46..0446628f6b 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-21.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-21 description: Array.prototype.filter - the global object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-22.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-22.js index b228ea16ca..5be3a79cbd 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-22.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-22 description: Array.prototype.filter - boolean primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-23.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-23.js index b7435cbf23..d6e271fc2f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-23.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-23 description: Array.prototype.filter - number primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-24.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-24.js index ec99f9b2b5..7d215bac23 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-24.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-24 description: Array.prototype.filter - string primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-27.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-27.js index 691c695e73..5d73ff7f71 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-27.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-27 description: > Array.prototype.filter - Array.isArray(arg) returns true when arg is the returned array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-28.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-28.js index 676b5f39b2..e7c96e2baa 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-28.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-28 description: Array.prototype.filter - the returned array is instanceof Array ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-29.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-29.js index 88656b8138..5f959f0459 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-29.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-29 description: Array.prototype.filter - returns an array whose length is 0 ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-3.js index 4ab8cdc1cf..9d9f3e2b13 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-3 description: Array.prototype.filter - thisArg is Array ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-5-30.js b/test/built-ins/Array/prototype/filter/15.4.4.20-5-30.js index 8a3fb876fa..2b94cf8573 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-5-30.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-5-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-5-30 description: Array.prototype.filter - thisArg not passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-15.js index 4a7122ea19..3341aaa1a3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-15 description: > Array.prototype.filter - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-16.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-16.js index 9a04bb4875..eba851ea21 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-16.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-16 description: > Array.prototype.filter - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-17.js index 17bd3f8a7d..5df9276697 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-17 description: > Array.prototype.filter - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-18.js index b139b96a6f..fd83d6b215 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-18 description: > Array.prototype.filter - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-19.js index af8b5d615f..3e61ec9c18 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-19 description: > Array.prototype.filter - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-2.js index a129174e77..8937fb0ccd 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-2 description: > Array.prototype.filter - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-20.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-20.js index fa5905c96f..32cfb0a0a5 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-20.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-20 description: > Array.prototype.filter - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-21.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-21.js index 87bc30149a..39ca9dedf7 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-21.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-21 description: > Array.prototype.filter - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-22.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-22.js index ce088257b2..3e393d5cca 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-22.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-22 description: > Array.prototype.filter - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-25.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-25.js index f2288892ed..e386f9c907 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-25.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-25 description: > Array.prototype.filter - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-26.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-26.js index 13eabc564a..4ac4245582 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-26.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-26 description: > Array.prototype.filter - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-27.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-27.js index 117cbb39b7..6caa340469 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-27.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-27 description: > Array.prototype.filter - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-28.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-28.js index 28a3290dc4..9c9dd1d3ff 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-28.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-28 description: > Array.prototype.filter - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-29.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-29.js index f3cce11d79..7a72588fe9 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-29.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-29 description: > Array.prototype.filter - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-3.js index 1f6b1b8c15..7fceb6a54e 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-3 description: > Array.prototype.filter - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-30.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-30.js index 01ffb99e01..723c6015d5 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-30.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-30 description: > Array.prototype.filter - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-31.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-31.js index dc86f08484..b07e6d69ef 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-31.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-31 description: > Array.prototype.filter - unnhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-4.js index 62273cdb99..6e305895aa 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-4 description: > Array.prototype.filter - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-5.js index 7f694e9931..b8e7a6e355 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-5 description: > Array.prototype.filter - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-6.js index 17ead0e578..51ac07be28 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-6 description: > Array.prototype.filter - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-7.js index 2f92dcd612..0405855c5a 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-7 description: > Array.prototype.filter - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-8.js index a263ceb340..b38fb5f7ba 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-8 description: > Array.prototype.filter - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-9.js index 57aae11773..c2acdb1fcb 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-i-9 description: > Array.prototype.filter - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-1.js index e29bab3358..3afd0890ef 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-1 description: Array.prototype.filter - callbackfn called with correct parameters ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-10.js index 67884f9e54..6f8a8f10f0 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-10 description: > Array.prototype.filter - callbackfn is called with 1 formal parameter diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-11.js index ca8ee65542..d8e116f986 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-11 description: > Array.prototype.filter - callbackfn is called with 2 formal parameter diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-12.js index 8ef2009e4e..2f6f05fd4e 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-12 description: > Array.prototype.filter - callbackfn is called with 3 formal parameter diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-13.js index 59087549b9..7a80d28143 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-13 description: > Array.prototype.filter - callbackfn that uses arguments object to get parameter value diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-16.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-16.js index 44dab44499..b213e79db6 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-16.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-16 description: > Array.prototype.filter - 'this' of 'callbackfn' is a Boolean object when T is not an object (T is a boolean) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-17.js index 99a2bb143d..ea8baa4277 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-17 description: > Array.prototype.filter -'this' of 'callbackfn' is a Number object when T is not an object (T is a number) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-18.js index 73ccf1d5fd..5de5210193 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-18 description: > Array.prototype.filter - 'this' of 'callbackfn' is an String object when T is not an object (T is a string) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-19.js index b2ba6df2bc..6b4c0f6ad1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-19 description: Array.prototype.filter - non-indexed properties are not called ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-2.js index 208ff7aacc..2bf2d8f6b3 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-2 description: Array.prototype.filter - callbackfn takes 3 arguments ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-20.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-20.js index 645621f7e1..862779655f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-20.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-20 description: > Array.prototype.filter - callbackfn called with correct parameters (thisArg is correct) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-21.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-21.js index 8c2b37645f..b2befdab3f 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-21.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-21 description: > Array.prototype.filter - callbackfn called with correct parameters (kValue is correct) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-22.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-22.js index d8f90cbda1..d94c11c8ff 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-22.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-22 description: > Array.prototype.filter - callbackfn called with correct parameters (the index k is correct) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-23.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-23.js index 54813293c2..73d138885a 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-23.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-23 description: > Array.prototype.filter - callbackfn called with correct parameters (this object O is correct) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-4.js index 5b8e78643b..693faa6166 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-4 description: > Array.prototype.filter - k values are passed in ascending numeric order diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-5.js index f0f5e5df9c..b9fcc3bd92 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-5 description: > Array.prototype.filter - k values are accessed during each iteration and not prior to starting the loop on an Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-6.js index ea27bcafed..7a114a9bb1 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-6 description: > Array.prototype.filter - arguments to callbackfn are self consistent diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-7.js index 68d53c92cd..1d901980c2 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-7 description: > Array.prototype.filter - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-8.js index 6f93d5fee5..2c8d908573 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-8 description: > Array.prototype.filter - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-9.js index 382633547c..d85932ed6c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-ii-9 description: > Array.prototype.filter - callbackfn is called with 0 formal parameter diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-1.js index 32568ef97d..5bec1795ff 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-1 description: > Array.prototype.filter - value of returned array element equals to 'kValue' diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-2.js index 3a9a1dfc01..456f049a2c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-2 description: > Array.prototype.filter - value of returned array element can be overwritten diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-3.js index 1b641737e9..5f32803058 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-3 description: > Array.prototype.filter - value of returned array element can be enumerated diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-4.js index 18f72dd4c7..b5c647b80c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-4 description: > Array.prototype.filter - value of returned array element can be changed or deleted diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-5.js index b5a88eb4b9..6702a63187 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-5 description: > Array.prototype.filter - values of 'to' are passed in acending numeric order diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-6.js index 8e9d64fc65..83b0345ebf 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1-6 description: > Array.prototype.filter - values of 'to' are accessed during each iteration when 'selected' is converted to true and not prior to diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1.js index b4090e61db..d59fff075c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-1 description: > Array.prototype.filter - getOwnPropertyDescriptor(all true) of returned array element diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-10.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-10.js index e0095481f7..1208847699 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-10.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-10 description: > Array.prototype.filter return value of callbackfn is a number (value is negative number) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-11.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-11.js index f1458a7ec5..f9ddece054 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-11.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-11 description: > Array.prototype.filter return value of callbackfn is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-12.js index 3187b31ed7..11f34bad2a 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-12.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-12 description: > Array.prototype.filter return value of callbackfn is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-13.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-13.js index 3af7abd329..0b09465e70 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-13.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-13 description: > Array.prototype.filter return value of callbackfn is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-14.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-14.js index 976eb524d9..67d4618eaa 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-14.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-14 description: > Array.prototype.filter return value of callbackfn is an empty string diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-15.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-15.js index 46d3a541da..fcc69e197e 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-15.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-15 description: > Array.prototype.filter return value of callbackfn is a non-empty string diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-16.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-16.js index 9d61f23cf0..9ada5e7690 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-16.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-16 description: > Array.prototype.filter return value of callbackfn is a Function object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-17.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-17.js index e897b21bcc..14423b4a51 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-17.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-17 description: > Array.prototype.filter return value of callbackfn is an Array object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-18.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-18.js index 71f79ca9e9..e170452098 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-18.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-18 description: > Array.prototype.filter return value of callbackfn is a String object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-19.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-19.js index 0570144e92..cea7a2a7c5 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-19.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-19 description: > Array.prototype.filter return value of callbackfn is a Boolean object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-2.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-2.js index 892a96c6b0..3efd761d59 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-2.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-2 description: Array.prototype.filter - return value of callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-20.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-20.js index c5409a87e7..67e3184004 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-20.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-20 description: > Array.prototype.filter - return value of callbackfn is a Number object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-21.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-21.js index 80c3876c64..f42d210fff 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-21.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-21 description: > Array.prototype.filter - return value of callbackfn is the Math object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-22.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-22.js index b9e29f24bb..d631b66c8b 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-22.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-22 description: > Array.prototype.filter - return value of callbackfn is a Date object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-23.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-23.js index 69b2c2c72b..0415c7a4b2 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-23.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-23 description: > Array.prototype.filter - return value of callbackfn is a RegExp object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-24.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-24.js index afd5e22348..04c97a94d9 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-24.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-24 description: > Array.prototype.filter - return value of callbackfn is the JSON object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-25.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-25.js index 279fb2a4b3..b4b9b634cf 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-25.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-25 description: > Array.prototype.filter - return value of callbackfn is an Error object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-26.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-26.js index 25ec2c9fe8..de29b831cb 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-26.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-26 description: > Array.prototype.filter - return value of callbackfn is the Arguments object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-28.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-28.js index 7d02e8a477..52d5e6bb72 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-28.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-28 description: > Array.prototype.filter - return value of callbackfn is the global object diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-29.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-29.js index 4184c13cfd..7c9c3c7702 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-29.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-29 description: > Array.prototype.filter - false prevents element added to output Array diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-3.js index f5d032d1c8..e6dee58648 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-3.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-3 description: Array.prototype.filter - return value of callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-30.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-30.js index e21b710d61..9e6556a30c 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-30.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-30 description: > Array.prototype.filter - return value (new Boolean(false)) of callbackfn is treated as true value diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-4.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-4.js index 400819dc74..c26432d1c4 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-4.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-4 description: > Array.prototype.filter - return value of callbackfn is a boolean (value is false) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-5.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-5.js index d33c906f24..31ba5e8f51 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-5.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-5 description: > Array.prototype.filter - return value of callbackfn is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-6.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-6.js index 8cfdbcbfdd..e2a0060177 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-6.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-6 description: > Array.prototype.filter - return value of callbackfn is a number (value is 0) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-7.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-7.js index 766eb4034f..2cef94819e 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-7.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-7 description: > Array.prototype.filter - return value of callbackfn is a number (value is +0) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-8.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-8.js index ae10c8998b..9a3dafe5c6 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-8.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-8 description: > Array.prototype.filter - return value of callbackfn is a nunmber (value is -0) diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-9.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-9.js index c9f2d57726..a586d516cf 100644 --- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-9.js +++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-iii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es5id: 15.4.4.20-9-c-iii-9 description: > Array.prototype.filter - return value of callbackfn is a number (value is positive number) diff --git a/test/built-ins/Array/prototype/filter/create-ctor-non-object.js b/test/built-ins/Array/prototype/filter/create-ctor-non-object.js index e4f50c1cf0..0b84a7b793 100644 --- a/test/built-ins/Array/prototype/filter/create-ctor-non-object.js +++ b/test/built-ins/Array/prototype/filter/create-ctor-non-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: > Behavior when `constructor` property is neither an Object nor undefined diff --git a/test/built-ins/Array/prototype/filter/create-ctor-poisoned.js b/test/built-ins/Array/prototype/filter/create-ctor-poisoned.js index 8dec316a78..c880046c99 100644 --- a/test/built-ins/Array/prototype/filter/create-ctor-poisoned.js +++ b/test/built-ins/Array/prototype/filter/create-ctor-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Abrupt completion from `constructor` property access info: | diff --git a/test/built-ins/Array/prototype/filter/create-non-array.js b/test/built-ins/Array/prototype/filter/create-non-array.js index 34c2a56a07..38cfb68c1e 100644 --- a/test/built-ins/Array/prototype/filter/create-non-array.js +++ b/test/built-ins/Array/prototype/filter/create-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Constructor is ignored for non-Array values info: | diff --git a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js index c83236ae91..d5db934d33 100644 --- a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Prefer Array constructor of current realm record info: | diff --git a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-non-array.js b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-non-array.js index e13edacf3e..db9c440118 100644 --- a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-non-array.js +++ b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Accept non-Array constructors from other realms info: | diff --git a/test/built-ins/Array/prototype/filter/create-proxy.js b/test/built-ins/Array/prototype/filter/create-proxy.js index a4da208f42..4370847e7e 100644 --- a/test/built-ins/Array/prototype/filter/create-proxy.js +++ b/test/built-ins/Array/prototype/filter/create-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Species constructor of a Proxy object whose target is an array info: | diff --git a/test/built-ins/Array/prototype/filter/create-revoked-proxy.js b/test/built-ins/Array/prototype/filter/create-revoked-proxy.js index 3bdee5cd64..1f7d70a207 100644 --- a/test/built-ins/Array/prototype/filter/create-revoked-proxy.js +++ b/test/built-ins/Array/prototype/filter/create-revoked-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Abrupt completion from constructor that is a revoked Proxy object info: | diff --git a/test/built-ins/Array/prototype/filter/create-species-abrupt.js b/test/built-ins/Array/prototype/filter/create-species-abrupt.js index 4c461dd30f..2ed5895d9e 100644 --- a/test/built-ins/Array/prototype/filter/create-species-abrupt.js +++ b/test/built-ins/Array/prototype/filter/create-species-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Species constructor returns an abrupt completion info: | diff --git a/test/built-ins/Array/prototype/filter/create-species-non-ctor.js b/test/built-ins/Array/prototype/filter/create-species-non-ctor.js index 890bf4d521..067c433993 100644 --- a/test/built-ins/Array/prototype/filter/create-species-non-ctor.js +++ b/test/built-ins/Array/prototype/filter/create-species-non-ctor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: > Behavior when the @@species attribute is a non-constructor object diff --git a/test/built-ins/Array/prototype/filter/create-species-null.js b/test/built-ins/Array/prototype/filter/create-species-null.js index 8173f4965d..590bd2373d 100644 --- a/test/built-ins/Array/prototype/filter/create-species-null.js +++ b/test/built-ins/Array/prototype/filter/create-species-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: > A null value for the @@species constructor is interpreted as `undefined` diff --git a/test/built-ins/Array/prototype/filter/create-species-poisoned.js b/test/built-ins/Array/prototype/filter/create-species-poisoned.js index 947e8f8701..b62c32596e 100644 --- a/test/built-ins/Array/prototype/filter/create-species-poisoned.js +++ b/test/built-ins/Array/prototype/filter/create-species-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Abrupt completion from `@@species` property access info: | diff --git a/test/built-ins/Array/prototype/filter/create-species-undef.js b/test/built-ins/Array/prototype/filter/create-species-undef.js index 6ac8e349f5..17b4bfa17d 100644 --- a/test/built-ins/Array/prototype/filter/create-species-undef.js +++ b/test/built-ins/Array/prototype/filter/create-species-undef.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/filter/create-species.js b/test/built-ins/Array/prototype/filter/create-species.js index 01eedd6898..9626cf21ee 100644 --- a/test/built-ins/Array/prototype/filter/create-species.js +++ b/test/built-ins/Array/prototype/filter/create-species.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.7 esid: sec-array.prototype.filter description: Species constructor is used to create a new instance info: | diff --git a/test/built-ins/Array/prototype/filter/name.js b/test/built-ins/Array/prototype/filter/name.js index f8427e97de..db6c40655c 100644 --- a/test/built-ins/Array/prototype/filter/name.js +++ b/test/built-ins/Array/prototype/filter/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.filter -es6id: 22.1.3.7 description: > Array.prototype.filter.name is "filter". info: | diff --git a/test/built-ins/Array/prototype/find/array-altered-during-loop.js b/test/built-ins/Array/prototype/find/array-altered-during-loop.js index 205776a4ff..0fab717ad9 100644 --- a/test/built-ins/Array/prototype/find/array-altered-during-loop.js +++ b/test/built-ins/Array/prototype/find/array-altered-during-loop.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > The range of elements processed is set before the first call to `predicate`. info: | diff --git a/test/built-ins/Array/prototype/find/length.js b/test/built-ins/Array/prototype/find/length.js index 590c631012..6885d76de2 100644 --- a/test/built-ins/Array/prototype/find/length.js +++ b/test/built-ins/Array/prototype/find/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: Array.prototype.find.length value and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/find/name.js b/test/built-ins/Array/prototype/find/name.js index f3c4f83149..2aa50956c0 100644 --- a/test/built-ins/Array/prototype/find/name.js +++ b/test/built-ins/Array/prototype/find/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Array.prototype.find.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-call-parameters.js b/test/built-ins/Array/prototype/find/predicate-call-parameters.js index 8ee85716c4..ef4b1af898 100644 --- a/test/built-ins/Array/prototype/find/predicate-call-parameters.js +++ b/test/built-ins/Array/prototype/find/predicate-call-parameters.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Predicate called as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-call-this-non-strict.js b/test/built-ins/Array/prototype/find/predicate-call-this-non-strict.js index 8fa35fc9d6..81577bfa08 100644 --- a/test/built-ins/Array/prototype/find/predicate-call-this-non-strict.js +++ b/test/built-ins/Array/prototype/find/predicate-call-this-non-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-call-this-strict.js b/test/built-ins/Array/prototype/find/predicate-call-this-strict.js index d639da4642..49a7c4e0ec 100644 --- a/test/built-ins/Array/prototype/find/predicate-call-this-strict.js +++ b/test/built-ins/Array/prototype/find/predicate-call-this-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-called-for-each-array-property.js b/test/built-ins/Array/prototype/find/predicate-called-for-each-array-property.js index 5b6c65c593..d5e0f13cd8 100644 --- a/test/built-ins/Array/prototype/find/predicate-called-for-each-array-property.js +++ b/test/built-ins/Array/prototype/find/predicate-called-for-each-array-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Predicate is called for each array property. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-is-not-callable-throws.js b/test/built-ins/Array/prototype/find/predicate-is-not-callable-throws.js index c944534686..a2a2894ff5 100644 --- a/test/built-ins/Array/prototype/find/predicate-is-not-callable-throws.js +++ b/test/built-ins/Array/prototype/find/predicate-is-not-callable-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Throws a TypeError exception if predicate is not callable. info: | diff --git a/test/built-ins/Array/prototype/find/predicate-not-called-on-empty-array.js b/test/built-ins/Array/prototype/find/predicate-not-called-on-empty-array.js index 5545310572..eb71de7e18 100644 --- a/test/built-ins/Array/prototype/find/predicate-not-called-on-empty-array.js +++ b/test/built-ins/Array/prototype/find/predicate-not-called-on-empty-array.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Predicate is only called if this.length is > 0. info: | diff --git a/test/built-ins/Array/prototype/find/prop-desc.js b/test/built-ins/Array/prototype/find/prop-desc.js index 706602a671..54d790510d 100644 --- a/test/built-ins/Array/prototype/find/prop-desc.js +++ b/test/built-ins/Array/prototype/find/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: Property type and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/find/return-abrupt-from-predicate-call.js b/test/built-ins/Array/prototype/find/return-abrupt-from-predicate-call.js index 09b8874f8b..c296d679c5 100644 --- a/test/built-ins/Array/prototype/find/return-abrupt-from-predicate-call.js +++ b/test/built-ins/Array/prototype/find/return-abrupt-from-predicate-call.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return abrupt from predicate call. info: | diff --git a/test/built-ins/Array/prototype/find/return-abrupt-from-property.js b/test/built-ins/Array/prototype/find/return-abrupt-from-property.js index 6204c9ebb7..de9820ae5b 100644 --- a/test/built-ins/Array/prototype/find/return-abrupt-from-property.js +++ b/test/built-ins/Array/prototype/find/return-abrupt-from-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Returns abrupt from getting property value from `this`. info: | diff --git a/test/built-ins/Array/prototype/find/return-abrupt-from-this-length-as-symbol.js b/test/built-ins/Array/prototype/find/return-abrupt-from-this-length-as-symbol.js index 4202102e71..dc21636be5 100644 --- a/test/built-ins/Array/prototype/find/return-abrupt-from-this-length-as-symbol.js +++ b/test/built-ins/Array/prototype/find/return-abrupt-from-this-length-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return abrupt from ToLength(Get(O, "length")) where length is a Symbol. info: | diff --git a/test/built-ins/Array/prototype/find/return-abrupt-from-this-length.js b/test/built-ins/Array/prototype/find/return-abrupt-from-this-length.js index f2518b7b92..aae3392e40 100644 --- a/test/built-ins/Array/prototype/find/return-abrupt-from-this-length.js +++ b/test/built-ins/Array/prototype/find/return-abrupt-from-this-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return abrupt from ToLength(Get(O, "length")). info: | diff --git a/test/built-ins/Array/prototype/find/return-abrupt-from-this.js b/test/built-ins/Array/prototype/find/return-abrupt-from-this.js index 240b88c337..00ad1f3638 100644 --- a/test/built-ins/Array/prototype/find/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/find/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/find/return-found-value-predicate-result-is-true.js b/test/built-ins/Array/prototype/find/return-found-value-predicate-result-is-true.js index 16afbdf352..e8ce980645 100644 --- a/test/built-ins/Array/prototype/find/return-found-value-predicate-result-is-true.js +++ b/test/built-ins/Array/prototype/find/return-found-value-predicate-result-is-true.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return found value if predicate return a boolean true value. info: | diff --git a/test/built-ins/Array/prototype/find/return-undefined-if-predicate-returns-false-value.js b/test/built-ins/Array/prototype/find/return-undefined-if-predicate-returns-false-value.js index 0eb576508b..a3ca3cad67 100644 --- a/test/built-ins/Array/prototype/find/return-undefined-if-predicate-returns-false-value.js +++ b/test/built-ins/Array/prototype/find/return-undefined-if-predicate-returns-false-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.find -es6id: 22.1.3.8 description: > Return undefined if predicate always returns a boolean false value. info: | diff --git a/test/built-ins/Array/prototype/findIndex/array-altered-during-loop.js b/test/built-ins/Array/prototype/findIndex/array-altered-during-loop.js index 61f2e01ea1..3ea9229732 100644 --- a/test/built-ins/Array/prototype/findIndex/array-altered-during-loop.js +++ b/test/built-ins/Array/prototype/findIndex/array-altered-during-loop.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > The range of elements processed is set before the first call to `predicate`. info: | diff --git a/test/built-ins/Array/prototype/findIndex/length.js b/test/built-ins/Array/prototype/findIndex/length.js index 3e576d0ca2..bdea62eed0 100644 --- a/test/built-ins/Array/prototype/findIndex/length.js +++ b/test/built-ins/Array/prototype/findIndex/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: Array.prototype.findIndex.length value and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/findIndex/name.js b/test/built-ins/Array/prototype/findIndex/name.js index d24e1cf0db..7e0db6412d 100644 --- a/test/built-ins/Array/prototype/findIndex/name.js +++ b/test/built-ins/Array/prototype/findIndex/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Array.prototype.findIndex.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-call-parameters.js b/test/built-ins/Array/prototype/findIndex/predicate-call-parameters.js index 7be549d7ab..0760f1af2f 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-call-parameters.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-call-parameters.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Predicate called as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-call-this-non-strict.js b/test/built-ins/Array/prototype/findIndex/predicate-call-this-non-strict.js index 55f650d23f..e001dd2a61 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-call-this-non-strict.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-call-this-non-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-call-this-strict.js b/test/built-ins/Array/prototype/findIndex/predicate-call-this-strict.js index 13fa78c15f..98f0ea1587 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-call-this-strict.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-call-this-strict.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-called-for-each-array-property.js b/test/built-ins/Array/prototype/findIndex/predicate-called-for-each-array-property.js index fec2cb7bb8..67bda49146 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-called-for-each-array-property.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-called-for-each-array-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Predicate is called for each array property. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-is-not-callable-throws.js b/test/built-ins/Array/prototype/findIndex/predicate-is-not-callable-throws.js index e17e9d25d8..31d8e01361 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-is-not-callable-throws.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-is-not-callable-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Throws a TypeError exception if predicate is not callable. info: | diff --git a/test/built-ins/Array/prototype/findIndex/predicate-not-called-on-empty-array.js b/test/built-ins/Array/prototype/findIndex/predicate-not-called-on-empty-array.js index 103a95e987..64e1f00207 100644 --- a/test/built-ins/Array/prototype/findIndex/predicate-not-called-on-empty-array.js +++ b/test/built-ins/Array/prototype/findIndex/predicate-not-called-on-empty-array.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Predicate is only called if this.length is > 0. info: | diff --git a/test/built-ins/Array/prototype/findIndex/prop-desc.js b/test/built-ins/Array/prototype/findIndex/prop-desc.js index 66ae78ca1e..0ffc77950a 100644 --- a/test/built-ins/Array/prototype/findIndex/prop-desc.js +++ b/test/built-ins/Array/prototype/findIndex/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: Property type and descriptor. info: | 17 ECMAScript Standard Built-in Objects diff --git a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-predicate-call.js b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-predicate-call.js index 175fb020f7..aedd093b59 100644 --- a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-predicate-call.js +++ b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-predicate-call.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return abrupt from predicate call. info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-property.js b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-property.js index d30233708e..9f36bdf1f1 100644 --- a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-property.js +++ b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Returns abrupt from getting property value from `this`. info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length-as-symbol.js b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length-as-symbol.js index 6dd02eb0b2..0064f0e2ae 100644 --- a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length-as-symbol.js +++ b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length-as-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return abrupt from ToLength(Get(O, "length")) where length is a Symbol. info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length.js b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length.js index df805ce00a..0c95630f10 100644 --- a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length.js +++ b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return abrupt from ToLength(Get(O, "length")). info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this.js b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this.js index e9c8fd023c..446aa8190c 100644 --- a/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/findIndex/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-index-predicate-result-is-true.js b/test/built-ins/Array/prototype/findIndex/return-index-predicate-result-is-true.js index bddf1e3e4c..962a938d01 100644 --- a/test/built-ins/Array/prototype/findIndex/return-index-predicate-result-is-true.js +++ b/test/built-ins/Array/prototype/findIndex/return-index-predicate-result-is-true.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return index if predicate return a boolean true value. info: | diff --git a/test/built-ins/Array/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js b/test/built-ins/Array/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js index b1e6eb76b7..329666d076 100644 --- a/test/built-ins/Array/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js +++ b/test/built-ins/Array/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.findindex -es6id: 22.1.3.9 description: > Return -1 if predicate always returns a boolean false value. info: | diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-1.js index 8e8bb70036..54ca7837f7 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-1 description: Array.prototype.forEach applied to undefined ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-10.js index 7ba92b9737..7750eb158d 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-10 description: Array.prototype.forEach applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-11.js index 8d30c99dae..4eaf2170a9 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-11 description: Array.prototype.forEach applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-12.js index c360a87716..c75d978399 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-12 description: Array.prototype.forEach applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-13.js index 9759f019af..8476087391 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-13 description: Array.prototype.forEach applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-14.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-14.js index e6c5caa104..ed8b0c8f32 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-14.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-14 description: Array.prototype.forEach applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-15.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-15.js index 2ea3f1e44f..836addeafe 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-15.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-15 description: Array.prototype.forEach applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-2.js index bce24cc3fc..f53d672ec1 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-2 description: Array.prototype.forEach applied to null ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-3.js index 6434a1a5d5..d14d8d2cd6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-3 description: Array.prototype.forEach applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-4.js index 87304f79b4..1c1e568cda 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-4 description: Array.prototype.forEach applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-5.js index 7afae81ba9..873eccf332 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-5 description: Array.prototype.forEach applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-6.js index 8e33905dfb..44e7122e85 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-6 description: Array.prototype.forEach applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-7.js index 7160b1c048..137550ab12 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-7 description: Array.prototype.forEach applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-8.js index 3f2027f772..3c9329f549 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-8 description: Array.prototype.forEach applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-9.js index 38cd914432..217580de0b 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-1-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-1-9 description: Array.prototype.forEach applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-1.js index f6d82711cd..197f4a85ff 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-1 description: > Array.prototype.forEach - 'length' is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-10.js index a4b5e78bbe..d2e07c2d47 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-10 description: > Array.prototype.forEach applied to Array-like object, 'length' is an inherited accessor property diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-11.js index e9e36719e2..899ea7b660 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-11 description: > Array.prototype.forEach applied to Array-like object, 'length' is an own accessor property without a get function diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-12.js index 6bb1b8f12a..9795ff8221 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-12 description: > Array.prototype.forEach - 'length' is own accessor property without a get function that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-13.js index 9dac1f4a26..485d65803d 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-13 description: > Array.prototype.forEach applied to the Array-like object that 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-14.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-14.js index 297cdf482c..215683d63a 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-14.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-14 description: > Array.prototype.forEach applied to the Array-like object that 'length' property doesn't exist diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js index 9f2cd87c73..c052718a28 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-17 description: > Array.prototype.forEach applied to the Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-18.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-18.js index 717904329a..918ee73a2e 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-18.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-18 description: > Array.prototype.forEach applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-19.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-19.js index 200ad5818c..26fa778f99 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-19.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-19 description: > Array.prototype.forEach applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-2.js index 4f3c8f8c3b..e1434a3567 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-2 description: Array.prototype.forEach - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-3.js index 05c761a4f4..cfee2e523e 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-3 description: > Array.prototype.forEach - 'length' is an own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-4.js index 9d52243339..b65dfe77ea 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-4 description: > Array.prototype.forEach - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-5.js index 21fd3b12c9..eab6e214fb 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-5 description: > Array.prototype.forEach applied to Array-like object, 'length' is an own data property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-6.js index 23627c89aa..e560c6e9ae 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-6 description: > Array.prototype.forEach applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-7.js index 2fb7ebdc3b..c1b3f89eef 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-7 description: > Array.prototype.forEach applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-8.js index ee2588cd25..e963adf805 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-8 description: > Array.prototype.forEach applied to Array-like object, 'length' is an own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-9.js index 98f6075958..754e9a16f8 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-2-9 description: > Array.prototype.forEach applied to Array-like object, 'length' is an own accessor property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-3-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-3-1.js index 61853f5cad..7b63a060d6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-3-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-3-1 description: Array.prototype.forEach - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-3-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-3-10.js index b82073f6a8..c943563f23 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-3-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-3-10 description: > Array.prototype.forEach - value of 'length' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-7.js index 3379dbe02e..9f4689e753 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-4-7 description: > Array.prototype.forEach throws TypeError if callbackfn is Object without Call internal method diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-8.js index 09f9862fef..9d2b8aaba9 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-4-8 description: > Array.prototype.forEach - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-9.js index 75b0065b32..93d051e9f7 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-4-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-4-9 description: > Array.prototype.forEach - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1-s.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1-s.js index c4b4c0df4c..aeb9400294 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1-s.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-1-s description: Array.prototype.forEach - thisArg not passed to strict callbackfn flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1.js index 6dd49f78f1..d7106f3ab3 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-1 description: Array.prototype.forEach - thisArg is passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-10.js index 771626914a..159201f295 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-10 description: Array.prototype.forEach - Array Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-11.js index 9975fe11c9..d5ccdc262c 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-11 description: Array.prototype.forEach - String Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-12.js index 4aa627ea0c..052c64651d 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-12 description: Array.prototype.forEach - Boolean Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-13.js index 0ca2d8c48e..16e02467b5 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-13 description: Array.prototype.forEach - Number Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-14.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-14.js index 8c1b7fcd53..c0834391da 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-14.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-14 description: Array.prototype.forEach - the Math object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-15.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-15.js index 8835b6bdcf..0200d8f56d 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-15.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-15 description: Array.prototype.forEach - Date Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-16.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-16.js index a0f3cb83dd..d830929c96 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-16.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-16 description: Array.prototype.forEach - RegExp Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-17.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-17.js index 2aea48e64e..cb45bb4a98 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-17.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-17 description: Array.prototype.forEach - the JSON object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-18.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-18.js index 84480af75f..9188a323b0 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-18.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-18 description: Array.prototype.forEach - Error Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-19.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-19.js index cf428f4401..3ad08ad12c 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-19.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-19 description: > Array.prototype.forEach - the Arguments object can be used as thisArg diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-2.js index 7c62ee13dd..26af3efd58 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-2 description: Array.prototype.forEach - thisArg is Object ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-21.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-21.js index 19b8de2faa..e88ba8ee40 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-21.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-21 description: Array.prototype.forEach - the global object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-22.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-22.js index 22fe09f8ee..f8d85f34e0 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-22.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-22 description: Array.prototype.forEach - boolean primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-23.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-23.js index c74f302aa7..4c0cd0c882 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-23.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-23 description: Array.prototype.forEach - number primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-24.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-24.js index fc1c4fa6f9..ad736f6944 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-24.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-24 description: Array.prototype.forEach - string primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-25.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-25.js index af345a9188..e3e9ad6f56 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-25.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-25 description: Array.prototype.forEach - thisArg not passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-3.js index 738c6624f9..432278a0f1 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-3 description: Array.prototype.forEach - thisArg is Array ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-4.js index 6a88eded2e..c062da6b5e 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-4 description: > Array.prototype.forEach - thisArg is object from object template(prototype) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-5.js index eedf65b799..78c4cd2e9c 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-5 description: Array.prototype.forEach - thisArg is object from object template ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-6.js index 00e62309be..8fbf818f98 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-6 description: Array.prototype.forEach - thisArg is function ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-7.js index c5db1a536b..df4d4cec7a 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-7 description: Array.prototype.forEach - built-in functions can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-9.js index 9dede756a3..6ea9de3bd5 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-5-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-5-9 description: Array.prototype.forEach - Function Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-1.js index 0ee2556d65..d8e5470a94 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-1 description: > Array.prototype.forEach doesn't consider new elements added to array after the call diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-2.js index 240795f062..ba95fed5bf 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-2 description: > Array.prototype.forEach doesn't visit deleted elements in array after the call diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-3.js index d81ed613fe..8cfad98ff3 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-3 description: > Array.prototype.forEach doesn't visit deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-4.js index 96180c3ab7..4d0246b0a2 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-4 description: > Array.prototype.forEach doesn't consider newly added elements in sparse array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-5.js index 9c56fa65cf..a21e4968dc 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-5 description: > Array.prototype.forEach visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-7.js index eb8ad48c67..ba7e50d666 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-7 description: > Array.prototype.forEach - considers new value of elements in array after the call diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-8.js index 8a2065833a..0a4826b343 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-8 description: Array.prototype.forEach - no observable effects occur if len is 0 ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-9.js index 361e225285..3758aa9f0e 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-9 description: > Array.prototype.forEach - modifications to length don't change number of iterations diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-1.js index ad7133ffb3..8621755f84 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-1 description: > Array.prototype.forEach - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-10.js index b3e6e5cc3d..6f951792e4 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-10 description: > Array.prototype.forEach - deleting property of prototype causes prototype index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-11.js index 5c7ee84f70..35b6b33f17 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-11 description: > Array.prototype.forEach - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-12.js index a7de152f11..dbb973be42 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-12 description: > Array.prototype.forEach - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-13.js index ecc5607a50..691a8f8e8f 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-13 description: > Array.prototype.forEach - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-14.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-14.js index 8a09839a58..b4960839b1 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-14.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-14 description: > Array.prototype.forEach - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-15.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-15.js index d92cf600a5..a77add8b9c 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-15.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-15 description: > Array.prototype.forEach - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-16.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-16.js index 864b5aac6d..b3bde55bbf 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-16.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-16 description: > Array.prototype.forEach - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-2.js index abc78638b8..077c9e3290 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-2 description: > Array.prototype.forEach - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js index d949efd186..60a87e43a6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-3 description: > Array.prototype.forEach - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-4.js index af22a02196..8ffaf48e45 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-4 description: > Array.prototype.forEach - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-5.js index fda33ef758..fb4535d2c6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-5 description: > Array.prototype.forEach - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-6.js index 8e5262582f..9d67c9b263 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-6 description: > Array.prototype.forEach - properties can be added to prototype after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-7.js index 11d9bd6ecf..52e6de40cf 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-7 description: > Array.prototype.forEach - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-8.js index 0e7f8c3084..ecfff4c977 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-8 description: > Array.prototype.forEach - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-9.js index aa579d22b9..19efe9ce35 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-b-9 description: > Array.prototype.forEach - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-1.js index 4261196fb7..e8b8b64fc2 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-1 description: > Array.prototype.forEach - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-10.js index 1411c10bd4..d903f39111 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-10 description: > Array.prototype.forEach - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-11.js index b313ad7c6a..5770fe3f81 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-11 description: > Array.prototype.forEach - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-12.js index 493e9632c4..99a42c66b6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-12 description: > Array.prototype.forEach - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-13.js index c3d66f5f4b..f9de12b3ba 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-13 description: > Array.prototype.forEach - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-14.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-14.js index e87ed433ee..4c0a3639f9 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-14.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-14 description: > Array.prototype.forEach - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-15.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-15.js index 5eebc81eab..2f9db6c28b 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-15.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-15 description: > Array.prototype.forEach - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-16.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-16.js index bf0c514cc6..f457515dc7 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-16.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-16 description: > Array.prototype.forEach - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-17.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-17.js index c63d80321c..3927a07a94 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-17.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-17 description: > Array.prototype.forEach - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-18.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-18.js index ae7114850f..03f04c8e81 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-18.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-18 description: > Array.prototype.forEach - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-19.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-19.js index 2c1a00be6b..805452eb8e 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-19.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-19 description: > Array.prototype.forEach - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-2.js index c5c0e59429..8def57f40f 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-2 description: > Array.prototype.forEach - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-20.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-20.js index 3d12eb6681..34a333f671 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-20.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-20 description: > Array.prototype.forEach - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-21.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-21.js index a185cb0a02..ca0bb1fb41 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-21.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-21 description: > Array.prototype.forEach - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-22.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-22.js index c3ccfca7b9..37d0e3f147 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-22.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-22 description: > Array.prototype.forEach - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-25.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-25.js index 7f192e129b..4eebffe440 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-25.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-25 description: > Array.prototype.forEach - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-26.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-26.js index 22775361f3..6b82314945 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-26.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-26 description: > Array.prototype.forEach - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-27.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-27.js index 8ae05bc5ac..4b32b15730 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-27.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-27 description: > Array.prototype.forEach - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-28.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-28.js index ca2a6f9021..b0af8fb623 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-28.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-28 description: > Array.prototype.forEach - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-29.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-29.js index 12f468ac7f..2f48919472 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-29.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-29 description: > Array.prototype.forEach - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-3.js index 7ee64853f1..87fc3e98a4 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-3 description: > Array.prototype.forEach - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-30.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-30.js index 2ded257f9f..00999e05f2 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-30.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-30 description: > Array.prototype.forEach - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-31.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-31.js index b6745f6d10..0b741de634 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-31.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-31 description: > Array.prototype.forEach - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-4.js index 3aa9c45737..1e4c8605bc 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-4 description: > Array.prototype.forEach - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-5.js index 0cba853753..d74e0bfd2c 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-5 description: > Array.prototype.forEach - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-6.js index 213de16bd8..02af9d7425 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-6 description: > Array.prototype.forEach - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-7.js index 28f747e836..1c2571a246 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-7 description: > Array.prototype.forEach - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-8.js index 9ede560ba4..b4f6663769 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-8 description: > Array.prototype.forEach - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-9.js index 51c77ca23e..cd3af15fe6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-i-9 description: > Array.prototype.forEach - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-1.js index e0eb478299..97cdec65b8 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-1 description: Array.prototype.forEach - callbackfn called with correct parameters ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-10.js index 1f6e4baa39..0e3c5b7a50 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-10 description: > Array.prototype.forEach - callbackfn is called with 1 formal parameter diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-11.js index a2991bb19c..3891d45c6f 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-11 description: > Array.prototype.forEach - callbackfn is called with 2 formal parameter diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-12.js index 667bec2276..6322201d87 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-12 description: > Array.prototype.forEach - callbackfn is called with 3 formal parameter diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-13.js index 46a0ec317f..8226d997c8 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-13 description: Array.prototype.forEach - callbackfn that uses arguments ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-16.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-16.js index 739bae5f3d..f584a0adc3 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-16.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-16 description: > Array.prototype.forEach - 'this' of 'callbackfn' is a Boolean object when T is not an object (T is a boolean) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-17.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-17.js index 44e2e9baca..89b08266e5 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-17.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-17 description: > Array.prototype.forEach - 'this' of 'callbackfn' is a Number object when T is not an object (T is a number) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-18.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-18.js index 3cf057a311..ef28222057 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-18.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-18 description: > Array.prototype.forEach - 'this' of 'callbackfn' is an String object when T is not an object (T is a string) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-19.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-19.js index df0f1401e0..f917c6035a 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-19.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-19 description: Array.prototype.forEach - non-indexed properties are not called ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-2.js index 6dcd31b139..b46ea2a468 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-2 description: Array.prototype.forEach - callbackfn takes 3 arguments ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-20.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-20.js index d0a6f846d6..419ba95fc6 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-20.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-20 description: > Array.prototype.forEach - callbackfn called with correct parameters (thisArg is correct) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-21.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-21.js index a165b48209..82a0c3c2fe 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-21.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-21 description: > Array.prototype.forEach - callbackfn called with correct parameters (kValue is correct) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-22.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-22.js index 8b29f06dab..97674b0b88 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-22.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-22 description: > Array.prototype.forEach - callbackfn called with correct parameters (the index k is correct) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-23.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-23.js index 24ae74378f..af0da8ec30 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-23.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-23 description: > Array.prototype.forEach - callbackfn called with correct parameters (this object O is correct) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-4.js index 89d2da4a0d..f7e3a3f424 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-4 description: > Array.prototype.forEach - k values are passed in ascending numeric order diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-5.js index 1b597b8ed1..9a88c3550a 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-5 description: > Array.prototype.forEach - k values are accessed during each iteration and not prior to starting the loop on an Array diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-6.js index 22d73e78be..e279b1df02 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-6 description: > Array.prototype.forEach - arguments to callbackfn are self consistent diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-7.js index c7f28a11f6..7c0ba7375b 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-7 description: > Array.prototype.forEach - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-8.js index 452044f84c..9b99553a01 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-8 description: > Array.prototype.forEach - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-9.js index 5f6aa9cfd0..698402ebad 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-7-c-ii-9 description: > Array.prototype.forEach - callbackfn is called with 0 formal parameter diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-1.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-1.js index cf592c1e42..5be178a3b1 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-1.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-1 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (empty array) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-10.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-10.js index 3734407484..4df29e97bc 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-10.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-10 description: Array.prototype.forEach - subclassed array when length is reduced ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-11.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-11.js index d594b58a20..ebb7916596 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-11.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-11 description: > Array.prototype.forEach doesn't mutate the array on which it is called on diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-12.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-12.js index 3b92ddb24c..23097b6b85 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-12.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-12 description: Array.prototype.forEach doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-13.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-13.js index de40f14e30..2e75440c33 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-13.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-13 description: > Array.prototype.forEach - undefined will be returned when 'len' is 0 diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-2.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-2.js index 96c4cdc45d..97b1d5c906 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-2.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-2 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-3.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-3.js index 9dbf01bec9..baeb065b80 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-3.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-3 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-4.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-4.js index fd9bfba940..e42566ac04 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-4.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-4 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-5.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-5.js index 6e3ce9beed..4e099e8744 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-5.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-5 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-6.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-6.js index 0e26ea86fc..ebacfb8379 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-6.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-6 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-7.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-7.js index d08dadd7ac..71875d787b 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-7.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-7 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-8.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-8.js index dee5abda64..f8721cc8e9 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-8.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-8 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden with [] diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-9.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-9.js index 2ce7678bf1..63fb00aefa 100644 --- a/test/built-ins/Array/prototype/forEach/15.4.4.18-8-9.js +++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-8-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es5id: 15.4.4.18-8-9 description: > Array.prototype.forEach doesn't call callbackfn if 'length' is 0 (subclassed Array, length overridden with [0] diff --git a/test/built-ins/Array/prototype/forEach/S15.4.4.18_A1.js b/test/built-ins/Array/prototype/forEach/S15.4.4.18_A1.js index 0cfaf6ea8d..617abcad6d 100644 --- a/test/built-ins/Array/prototype/forEach/S15.4.4.18_A1.js +++ b/test/built-ins/Array/prototype/forEach/S15.4.4.18_A1.js @@ -4,7 +4,6 @@ /*--- info: array.forEach can be frozen while in progress esid: sec-array.prototype.foreach -es5id: 15.4.4.18_A1 description: Freezes array.forEach during a forEach to see if it works ---*/ diff --git a/test/built-ins/Array/prototype/forEach/S15.4.4.18_A2.js b/test/built-ins/Array/prototype/forEach/S15.4.4.18_A2.js index c743d247ef..e6d75c9a35 100644 --- a/test/built-ins/Array/prototype/forEach/S15.4.4.18_A2.js +++ b/test/built-ins/Array/prototype/forEach/S15.4.4.18_A2.js @@ -4,7 +4,6 @@ /*--- info: array.forEach can be frozen while in progress esid: sec-array.prototype.foreach -es5id: 15.4.4.18_A2 description: Freezes array.forEach during a forEach to see if it works ---*/ diff --git a/test/built-ins/Array/prototype/forEach/name.js b/test/built-ins/Array/prototype/forEach/name.js index 0e9609ac66..9423bd4eac 100644 --- a/test/built-ins/Array/prototype/forEach/name.js +++ b/test/built-ins/Array/prototype/forEach/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.foreach -es6id: 22.1.3.10 description: > Array.prototype.forEach.name is "forEach". info: | diff --git a/test/built-ins/Array/prototype/includes/this-is-not-object.js b/test/built-ins/Array/prototype/includes/this-is-not-object.js index 82b02b271d..895e17c964 100644 --- a/test/built-ins/Array/prototype/includes/this-is-not-object.js +++ b/test/built-ins/Array/prototype/includes/this-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.14 esid: sec-array.prototype.includes description: > Throws a TypeError exception when `this` cannot be coerced to Object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-1.js index ea9ca6068f..206cea5afe 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-1 description: Array.prototype.indexOf applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-10.js index 4622e10a06..d786c3b1a0 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-10 description: Array.prototype.indexOf applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-11.js index 51d4a331e9..e6ffc20f9f 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-11 description: Array.prototype.indexOf applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-12.js index 4c23949e9c..f475f624a1 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-12 description: Array.prototype.indexOf applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-13.js index b339869a0a..dfad606542 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-13 description: Array.prototype.indexOf applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-14.js index 06c02d8f18..b401c43c17 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-14 description: Array.prototype.indexOf applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-15.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-15.js index 598ba594e1..d769db6268 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-15.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-15 description: Array.prototype.indexOf applied to Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-2.js index 5e348a54ec..922084a232 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-2 description: Array.prototype.indexOf applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-3.js index 3bfe5e7a6e..6d9ec06614 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-3 description: Array.prototype.indexOf applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-4.js index 5f0dd9ed5f..75c69a6ba4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-4 description: Array.prototype.indexOf applied to Boolean Object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-5.js index 4fa661c8b8..67c0ba6519 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-5 description: Array.prototype.indexOf applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-6.js index 928377959b..9d57b6ab5d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-6 description: Array.prototype.indexOf applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-7.js index 08dadf026e..2a6401b1ce 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-7 description: Array.prototype.indexOf applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-8.js index eaa29361e3..6b5e01bfe6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-8 description: Array.prototype.indexOf applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-9.js index 065d31bc74..e4822b3a30 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-1-9 description: Array.prototype.indexOf applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-1.js index 8a77b86f52..2aa17bb127 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-10-1 description: > Array.prototype.indexOf returns -1 for elements not present in array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-2.js index fbb9268888..89c3fc9871 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-10-2 description: > Array.prototype.indexOf returns -1 if 'length' is 0 and does not access any other properties diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-1.js index e14c28ba31..68682a45e0 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-1 description: > Array.prototype.indexOf - 'length' is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-10.js index bde4a7b79b..b06402edaa 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-10 description: Array.prototype.indexOf - 'length' is inherited accessor property ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-11.js index d5d473e994..ce64c06a26 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-11 description: > Array.prototype.indexOf - 'length' is own accessor property without a get function diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-12.js index 205d52fbe5..ee3adfbbd1 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-12 description: > Array.prototype.indexOf - 'length' is own accessor property without a get function that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-13.js index 833c45d701..3353105067 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-13 description: > Array.prototype.indexOf - 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-14.js index 8807657e82..9334de18f8 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-14 description: Array.prototype.indexOf - 'length' is undefined property ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-17.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-17.js index cce214933d..ddcab99744 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-17.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-17 description: > Array.prototype.indexOf applied to Arguments object which implements its own property get method diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js index e739dd81a1..07c459de98 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-18 description: > Array.prototype.indexOf applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-19.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-19.js index b5735739ff..7cee4b9bd6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-19.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-19 description: > Array.prototype.indexOf applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-2.js index 9fba718211..ac80fc1b6c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-2 description: Array.prototype.indexOf - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-3.js index db7ecfe839..3bdcbe7fe0 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-3 description: > Array.prototype.indexOf - 'length' is own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-4.js index dfc01cd8d7..11a2f08d48 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-4 description: > Array.prototype.indexOf - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-5.js index 0f3909236c..cf89388479 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-5 description: > Array.prototype.indexOf - 'length' is own data property that overrides an inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-6.js index 79269969a1..e52f5de226 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-6 description: Array.prototype.indexOf - 'length' is an inherited data property ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-7.js index 6a0ec25878..3f72bf97ab 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-7 description: Array.prototype.indexOf - 'length' is own accessor property ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-8.js index 8ad55630ea..f8e729bd7a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-8 description: > Array.prototype.indexOf - 'length' is own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-9.js index 2bf8c82efe..efa1ebf147 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-2-9 description: > Array.prototype.indexOf - 'length' is own accessor property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-1.js index 0787c3a9c4..f50870de5c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-1 description: Array.prototype.indexOf - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-10.js index 503c2206df..4bf9393642 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-10 description: > Array.prototype.indexOf - value of 'length' is number primitive (value is NaN) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-11.js index 9914d8d78c..4fc1ea8db9 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-11 description: > Array.prototype.indexOf - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-12.js index edc04e60cb..035217af90 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-12 description: > Array.prototype.indexOf - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-13.js index 0b2ea6bb6d..7088c6c648 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-13 description: > Array.prototype.indexOf - 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js index ec4c578d21..c3869c3b1b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-14 description: > Array.prototype.indexOf - 'length' is a string containing +/-Infinity diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-15.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-15.js index 2bf0dd8b2b..57cf197216 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-15.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-15 description: > Array.prototype.indexOf - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-16.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-16.js index c3cd2c458f..c40b07b547 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-16.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-16 description: > Array.prototype.indexOf - 'length' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-17.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-17.js index 66bb812c35..84c1ac772e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-17.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-17 description: > Array.prototype.indexOf - 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-18.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-18.js index 382df40af8..70c19b4db3 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-18.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-18 description: > Array.prototype.indexOf - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-19.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-19.js index b770f05777..8443b9ac12 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-19.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-19 description: > Array.prototype.indexOf - value of 'length' is an Object which has an own toString method. diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-2.js index a645ce3b0b..f09c50e652 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-2 description: > Array.prototype.indexOf return -1 when 'length' is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-20.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-20.js index 6c9c56ff27..3725fda36d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-20.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-20 description: > Array.prototype.indexOf - value of 'length' is an Object which has an own valueOf method. diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-21.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-21.js index f1de649c87..d662f78982 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-21.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-21 description: > Array.prototype.indexOf - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-22.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-22.js index ad43241289..f72ce9fa35 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-22.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-22 description: > Array.prototype.indexOf throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-23.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-23.js index a87a044d5f..a6cddaf816 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-23.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-23 description: > Array.prototype.indexOf uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-24.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-24.js index 109eca9ec1..0c9318eb00 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-24.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-24 description: > Array.prototype.indexOf - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-25.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-25.js index d1c35a4858..475b5f5191 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-25.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-25 description: > Array.prototype.indexOf - value of 'length' is a negative non-integer diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js index b6f651f695..d314692578 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-28 description: > Array.prototype.indexOf - value of 'length' is boundary value (2^32) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js index 41298b8a34..7d1b5e980e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-29 description: > Array.prototype.indexOf - value of 'length' is boundary value (2^32 + 1) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-3.js index 2db8c77fc6..9efcf5b164 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-3 description: > Array.prototype.indexOf - value of 'length' is a number (value is 0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-4.js index c2f4f22c83..fa00285926 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-4 description: > Array.prototype.indexOf - value of 'length' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-5.js index 4ca356c5f9..cec3164c20 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-5 description: > Array.prototype.indexOf - value of 'length' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-6.js index 841c6b02ed..83967ce914 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-6 description: > Array.prototype.indexOf - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js index bbc47c9817..e472101baf 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-7 description: > Array.prototype.indexOf - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-8.js index b7ffedc0c6..b3ca01c4a4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-8 description: > Array.prototype.indexOf - value of 'length' is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-9.js index 00fafbc745..36e68d32ea 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-3-9 description: > Array.prototype.indexOf - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-1.js index 7f753d7855..b422020259 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-1 description: Array.prototype.indexOf returns -1 if 'length' is 0 (empty array) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-10.js index 47a90a2287..29eef28f09 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-10 description: Array.prototype.indexOf - 'length' is a number of value -6e-1 ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-11.js index 94da778486..b6ee043b56 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-11 description: Array.prototype.indexOf - 'length' is an empty string ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-2.js index e39faf7b10..709ef60c20 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-2 description: > Array.prototype.indexOf returns -1 if 'length' is 0 ( length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-3.js index ccca42340f..39757786b5 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-3 description: > Array.prototype.indexOf returns -1 if 'length' is 0 (length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-4.js index d665e97c1f..097453ced9 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-4 description: > Array.prototype.indexOf returns -1 if 'length' is 0 (generic 'array' with length 0 ) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-5.js index 7cd825ba8d..002a84590f 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-5 description: > Array.prototype.indexOf returns -1 if 'length' is 0 ( length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-6.js index bdb5f01fa1..c87697811e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-6 description: > Array.prototype.indexOf returns -1 if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-7.js index c6c14d7736..a533d70872 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-7 description: > Array.prototype.indexOf returns -1 if 'length' is 0 ( length is object overridden with obj w/o valueOf (toString)) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-8.js index 2c863ea490..efd15a5462 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-8 description: > Array.prototype.indexOf returns -1 if 'length' is 0 (length is an empty array) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-9.js index b64c1213aa..fe7f01091c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-4-9 description: Array.prototype.indexOf - 'length' is a number of value 0.1 ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-1.js index bfb7c07cdf..027ada2bf2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-1 description: Array.prototype.indexOf when fromIndex is string ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-10.js index 4ec2ce2a05..46713aa15a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-10 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is positive number) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-11.js index 873dcea190..d0f2e5d0b7 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-11 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is negative number) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-12.js index ef4baf22eb..473a714a0c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-12 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js index de88a919e1..390bf0a5d3 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-13 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-14.js index fe74c5ed05..d2082c5afd 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-14 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-15.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-15.js index cc5d7a6bfa..9b309fcf20 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-15.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-15 description: > Array.prototype.indexOf - value of 'fromIndex' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-16.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-16.js index 6f9afde36a..bf3aa662e6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-16.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-16 description: > Array.prototype.indexOf - value of 'fromIndex' is a string containing Infinity diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-17.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-17.js index 4614f26489..f2907e6751 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-17.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-17 description: > Array.prototype.indexOf - value of 'fromIndex' is a string containing -Infinity diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-18.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-18.js index 66bfabd2fa..19be17c9e3 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-18.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-18 description: > Array.prototype.indexOf - value of 'fromIndex' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-19.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-19.js index 123b1304f7..ac921131ef 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-19.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-19 description: > Array.prototype.indexOf - value of 'fromIndex' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-2.js index 092e4127f6..033025e9d1 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-2 description: Array.prototype.indexOf when fromIndex is floating point number ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-20.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-20.js index 106b630ba1..997a616d98 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-20.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-20 description: > Array.prototype.indexOf - value of 'fromIndex' which is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-21.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-21.js index 887de235ac..2e53979f4a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-21.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-21 description: > Array.prototype.indexOf - value of 'fromIndex' is an Object, which has an own toString method diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js index e1ed131978..dcd3603008 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-22 description: > Array.prototype.indexOf - value of 'fromIndex' is an Object, which has an own valueOf method diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-23.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-23.js index 8bfad2363f..6830553597 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-23.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-23 description: > Array.prototype.indexOf - value of 'fromIndex' is an object that has an own valueOf method that returns an object and toString diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-24.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-24.js index 881197259d..b75c27c7ee 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-24.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-24 description: > Array.prototype.indexOf throws TypeError exception when value of 'fromIndex' is an object with toString and valueOf methods that diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-25.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-25.js index f3943fc490..c4f43ab32e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-25.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-25 description: > Array.prototype.indexOf uses inherited valueOf method when value of 'fromIndex' is an object with an own toString and inherited diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-26.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-26.js index 43307ad734..03205fe95e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-26.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-26 description: > Array.prototype.indexOf - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-27.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-27.js index ec03ca8394..115ecad6f4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-27.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-27 description: > Array.prototype.indexOf - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-28.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-28.js index 71adbb3478..f034ade056 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-28.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-28 description: > Array.prototype.indexOf - side effects produced by step 1 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-29.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-29.js index 373bbc7e50..a0b606be99 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-29.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-29 description: > Array.prototype.indexOf - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-3.js index f9ec42cc87..9b3b0425f4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-3 description: Array.prototype.indexOf when fromIndex is boolean ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-30.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-30.js index d3eac966c0..9919e8928d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-30.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-30 description: > Array.prototype.indexOf - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-31.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-31.js index 64442d0db8..2372a62413 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-31.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-31 description: > Array.prototype.indexOf - 'fromIndex' is a positive non-integer, verify truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-32.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-32.js index a11186d51e..da74ffb82b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-32.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-32 description: > Array.prototype.indexOf - 'fromIndex' is a negative non-integer, verify truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-33.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-33.js index 73a0572e51..055f9e0eb4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-33.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-33 description: > Array.prototype.indexOf match on the first element, a middle element and the last element when 'fromIndex' is passed diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-4.js index 4230ef2bc0..9b3f08ec97 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-4 description: Array.prototype.indexOf returns 0 if fromIndex is 'undefined' ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-5.js index 4cd4418d56..55d39eb7a2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-5 description: Array.prototype.indexOf returns 0 if fromIndex is null ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-6.js index 2ea05b825e..8329d179ad 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-6 description: Array.prototype.indexOf - 'fromIndex' isn't passed ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-7.js index 2d30b4df2a..c0e26d7c39 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-7 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is 0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-8.js index 94623fc12f..81787e4c1d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-8 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-9.js index 9ced9d3864..3434222fc9 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-5-9 description: > Array.prototype.indexOf - value of 'fromIndex' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-6-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-6-1.js index 1309ad967a..e959c59a8d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-6-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-6-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-6-1 description: > Array.prototype.indexOf returns -1 if fromIndex is greater than Array length diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-1.js index 21f8596e56..3dc978d51a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-7-1 description: > Array.prototype.indexOf returns -1 when 'fromIndex' is length of array - 1 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-2.js index 1f30d78162..2922b98221 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-7-2 description: > Array.prototype.indexOf returns correct index when 'fromIndex' is length of array - 1 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-3.js index a69458ec08..8600a84443 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-7-3 description: > Array.prototype.indexOf returns -1 when 'fromIndex' and 'length' are both 0 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-4.js index 262a3d46c9..75e3c6c0a5 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-7-4 description: Array.prototype.indexOf returns -1 when 'fromIndex' is 1 ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-5.js index b0199185dc..2c9115dcf4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-7-5 description: Array.prototype.indexOf returns correct index when 'fromIndex' is 1 ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-1.js index 4531f80519..0678d530a6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-8-1 description: Array.prototype.indexOf with negative fromIndex ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-2.js index 137ff46384..2560289367 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-8-2 description: > Array.prototype.indexOf returns correct index when 'fromIndex' is -1 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-3.js index 961110cbf0..ebcef09822 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-8-3 description: > Array.prototype.indexOf returns -1 when abs('fromIndex') is length of array - 1 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-4.js index 38f9a20e84..c13e539975 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-8-4 description: > Array.prototype.indexOf returns -1 when abs('fromIndex') is length of array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js index 91a596078f..d9ea767c85 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-1 description: Array.prototype.indexOf must return correct index (boolean) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-10.js index 92ebaa80aa..0ad4af86c6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-10.js @@ -6,7 +6,6 @@ info: | note that prior to the finally ES5 draft SameValue was used for comparisions and hence NaNs could be found using indexOf * esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-10 description: Array.prototype.indexOf must return correct index (NaN) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-11.js index 77108424d9..5c804701a1 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-11 description: > Array.prototype.indexOf - the length of iteration isn't changed by adding elements to the array during iteration diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-2.js index 410a7c0ef1..a6e97ee230 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-2 description: Array.prototype.indexOf must return correct index (Number) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-3.js index 8b4ff007cc..54dac87682 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-3 description: Array.prototype.indexOf must return correct index(string) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-4.js index 697f919678..55ffd43a96 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-4 description: Array.prototype.indexOf must return correct index(undefined) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-5.js index 8537c3ac30..4bc9b6491d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-5 description: Array.prototype.indexOf must return correct index (Object) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-6.js index cb657505bb..2ef46e502e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-6 description: Array.prototype.indexOf must return correct index(null) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-7.js index 0a8028b4e7..7280b5eb2b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-7 description: Array.prototype.indexOf must return correct index (self reference) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-8.js index 7e07ce058f..91e1755adf 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-8 description: Array.prototype.indexOf must return correct index (Array) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-9.js index 800f568bf4..b0f4870119 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-9 description: Array.prototype.indexOf must return correct index (Sparse Array) ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-1.js index 043314c607..e2078d571d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-1 description: > Array.prototype.indexOf - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-10.js index 4a2797e620..68c42aafd6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-10 description: > Array.prototype.indexOf - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-11.js index 65e5043253..764704a60f 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-11 description: > Array.prototype.indexOf - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-12.js index d07f4a7102..b62bc6190d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-12 description: > Array.prototype.indexOf - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-13.js index f45f555cf6..52ee037d89 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-13 description: > Array.prototype.indexOf - deleting property of prototype causes prototype index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-14.js index 216e4da0b3..2b6f962cf8 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-14 description: > Array.prototype.indexOf - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-15.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-15.js index 5c5be6dc92..dc4a5f0352 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-15.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-15 description: > Array.prototype.indexOf - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-16.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-16.js index ed4072719d..25d8dae8f2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-16.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-16 description: > Array.prototype.indexOf - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-17.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-17.js index 8309a3b86e..72f6a2bcb2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-17.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-17 description: > Array.prototype.indexOf - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-18.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-18.js index 1d728bce1f..9ded300fb3 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-18.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-18 description: > Array.prototype.indexOf - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-19.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-19.js index 0fab8d12b7..ef689f08ee 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-19.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-19 description: > Array.prototype.indexOf - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-2.js index fac0434b98..afa849cb53 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-2 description: > Array.prototype.indexOf - added properties in step 5 are visible here on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-3.js index d7954ea908..9c7892786c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-3 description: > Array.prototype.indexOf - added properties in step 5 are visible here on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-4.js index 1340a1d67b..c1bf4a97e2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-4 description: > Array.prototype.indexOf - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-5.js index 926a37aeb5..6a70b8464e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-5 description: > Array.prototype.indexOf - deleted properties in step 5 are visible here on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-6.js index 41e275c6ce..a817ab4d32 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-6 description: > Array.prototype.indexOf - deleted properties in step 5 are visible here on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-7.js index 317816ab65..f451d2b9e6 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-7 description: > Array.prototype.indexOf - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-8.js index af3577d7db..b3d39b12ee 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-8 description: > Array.prototype.indexOf - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-9.js index 22ea6154ae..265c64ca10 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-a-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-a-9 description: > Array.prototype.indexOf - properties can be added to prototype after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-1.js index 2303fcc8ab..b0ea0ddb4c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-1 description: Array.prototype.indexOf - non-existent property wouldn't be called ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-1.js index 211c212ccd..56f764899b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-1 description: > Array.prototype.indexOf - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-10.js index af735dd418..22d7c2200f 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-10 description: > Array.prototype.indexOf - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-11.js index d744fec56c..7f6ad6b49a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-11 description: > Array.prototype.indexOf - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-12.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-12.js index 77f337f6b1..73b352e0cb 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-12.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-12 description: > Array.prototype.indexOf - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-13.js index f260b91bfa..55138d0d9e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-13.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-13 description: > Array.prototype.indexOf - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-14.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-14.js index b3133a5bcb..bc217a0908 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-14.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-14 description: > Array.prototype.indexOf - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-15.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-15.js index e9f5b47b76..d6ff36eeef 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-15.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-15 description: > Array.prototype.indexOf - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-16.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-16.js index 8a8057ee9f..46d3fb8b90 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-16.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-16 description: > Array.prototype.indexOf - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-17.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-17.js index 9ffbbe16ca..33d249ed19 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-17.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-17 description: > Array.prototype.indexOf - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-18.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-18.js index e79db90e3b..e67cca1f12 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-18.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-18 description: > Array.prototype.indexOf - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-19.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-19.js index 2ded8363e7..7b1da761f0 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-19.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-19 description: > Array.prototype.indexOf - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-2.js index 26a02628bb..8f700fa97a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-2 description: > Array.prototype.indexOf - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-20.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-20.js index 793084e9e0..2602522a9f 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-20.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-20 description: > Array.prototype.indexOf - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-21.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-21.js index ffc9331489..61abfb40a4 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-21.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-21 description: > Array.prototype.indexOf - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-22.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-22.js index f9fa4d41a2..08767b414a 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-22.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-22 description: > Array.prototype.indexOf - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-25.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-25.js index 4e5bb8b13b..6f4db951de 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-25.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-25 description: > Array.prototype.indexOf applied to Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-26.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-26.js index caa167d9d5..02986cf3dc 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-26.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-26 description: > Array.prototype.indexOf applied to Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-27.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-27.js index 02017a9292..6469d4c181 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-27.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-27 description: > Array.prototype.indexOf applied to Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-28.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-28.js index 2a13283be2..5d383db2f0 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-28.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-28 description: > Array.prototype.indexOf - side-effects are visible in subsequent iterations on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-29.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-29.js index 475817a8e8..383a8111ef 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-29.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-29 description: > Array.prototype.indexOf - side-effects are visible in subsequent iterations on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-3.js index 84006e81e4..6d405137bc 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-3 description: > Array.prototype.indexOf - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-30.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-30.js index c2c8d13507..ad2cfa875c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-30.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-30 description: > Array.prototype.indexOf - terminates iteration on unhandled exception on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-31.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-31.js index 8977a98939..ac62a86261 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-31.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-31 description: > Array.prototype.indexOf - terminates iteration on unhandled exception on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-4.js index 8920684262..9469f0c666 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-4 description: > Array.prototype.indexOf - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-5.js index 1d4332e749..0f8e7a3b7e 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-5 description: > Array.prototype.indexOf - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-6.js index 4661515c4f..c0f3fd798b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-6 description: > Array.prototype.indexOf - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-7.js index 6344f1784d..25278680b2 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-7 description: > Array.prototype.indexOf - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-8.js index 7ac1d98104..91f410dc65 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-8 description: > Array.prototype.indexOf - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-9.js index 007bbcc02c..2ecb027e7d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-i-9 description: > Array.prototype.indexOf - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-1.js index 9402b5c034..b330170f14 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-1 description: > Array.prototype.indexOf - type of array element is different from type of search element diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-10.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-10.js index 3846c1fcbb..b1384ae38d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-10.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-10 description: > Array.prototype.indexOf - both array element and search element are Boolean type, and they have same value diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-11.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-11.js index dcce4f0170..316195f168 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-11.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-11 description: > Array.prototype.indexOf - both array element and search element are Object type, and they refer to the same object diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-2.js index d80bde76e5..f1d3c11e3b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-2 description: > Array.prototype.indexOf - both type of array element and type of search element are Undefined diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-3.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-3.js index fbd618433f..ea63b35d2c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-3.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-3 description: > Array.prototype.indexOf - both type of array element and type of search element are null diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-4.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-4.js index 3ca94e5f76..bb63c9ec51 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-4.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-4 description: Array.prototype.indexOf - search element is NaN ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-5.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-5.js index 99c2256673..9c432d083b 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-5.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-5 description: Array.prototype.indexOf - search element is -NaN ---*/ diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-6.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-6.js index 74a20610ea..1224f0614d 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-6.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-6 description: > Array.prototype.indexOf - array element is +0 and search element is -0 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-7.js index d3ae010c81..1516f6ae69 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-7.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-7 description: > Array.prototype.indexOf - array element is -0 and search element is +0 diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-8.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-8.js index b9374a8ba0..388b382e03 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-8.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-8 description: > Array.prototype.indexOf - both array element and search element are Number, and they have same value diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-9.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-9.js index 59bf5ac987..e84772fbbb 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-9.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-ii-9 description: > Array.prototype.indexOf - both array element and search element are String, and they have exactly the same sequence of characters diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-1.js index bcd0b4b4bb..7598bb8d59 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-1.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-iii-1 description: > Array.prototype.indexOf - returns index of last one when more than two elements in array are eligible diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-2.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-2.js index 94a30fd4a6..8b43163a3c 100644 --- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-2.js +++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es5id: 15.4.4.14-9-b-iii-2 description: > Array.prototype.indexOf - returns without visiting subsequent element once search value is found diff --git a/test/built-ins/Array/prototype/indexOf/name.js b/test/built-ins/Array/prototype/indexOf/name.js index d38b76b35a..7bb5854c9f 100644 --- a/test/built-ins/Array/prototype/indexOf/name.js +++ b/test/built-ins/Array/prototype/indexOf/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.indexof -es6id: 22.1.3.12 description: > Array.prototype.indexOf.name is "indexOf". info: | diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.1_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.1_T1.js index 3e9b0a1777..f969727a4b 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.1_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.1_T1.js @@ -4,7 +4,6 @@ /*--- info: If length is zero, return the empty string esid: sec-array.prototype.join -es5id: 15.4.4.5_A1.1_T1 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T1.js index 002775eac9..1673584f81 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T1.js @@ -4,7 +4,6 @@ /*--- info: If separator is undefined, a single comma is used as the separator esid: sec-array.prototype.join -es5id: 15.4.4.5_A1.2_T1 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T2.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T2.js index 9ec63f6c75..2e74bd8477 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T2.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.2_T2.js @@ -4,7 +4,6 @@ /*--- info: If separator is undefined, a single comma is used as the separator esid: sec-array.prototype.join -es5id: 15.4.4.5_A1.2_T2 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.3_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.3_T1.js index bbe9801e5b..5e9d7c242a 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A1.3_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A1.3_T1.js @@ -4,7 +4,6 @@ /*--- info: If array element is undefined or null, use the empty string esid: sec-array.prototype.join -es5id: 15.4.4.5_A1.3_T1 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T1.js index e9b56c0533..934522ebcc 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T1.js @@ -6,7 +6,6 @@ info: | The join function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.join -es5id: 15.4.4.5_A2_T1 description: If ToUint32(length) is zero, return the empty string ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T2.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T2.js index 8a6fbb9809..1c7411d190 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T2.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T2.js @@ -6,7 +6,6 @@ info: | The join function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.join -es5id: 15.4.4.5_A2_T2 description: If ToUint32(length) is zero, return the empty string ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T3.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T3.js index 7a2c98b7f6..3f4d2db41f 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T3.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T3.js @@ -6,7 +6,6 @@ info: | The join function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.join -es5id: 15.4.4.5_A2_T3 description: If ToUint32(length) is zero, return the empty string ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T4.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T4.js index 729580e042..98d29bb998 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T4.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A2_T4.js @@ -6,7 +6,6 @@ info: | The join function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.join -es5id: 15.4.4.5_A2_T4 description: > Operator use ToNumber from length. If Type(value) is Object, evaluate ToPrimitive(value, Number) diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js index a76e7ba020..2571a9a2f2 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToString from separator esid: sec-array.prototype.join -es5id: 15.4.4.5_A3.1_T1 description: > Checking separator in ["", "\\", "&", true, Infinity, null, undefind, NaN] diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T2.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T2.js index 28925d93e3..8e60e6bd6e 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T2.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToString from separator esid: sec-array.prototype.join -es5id: 15.4.4.5_A3.1_T2 description: > If Type(separator) is Object, evaluate ToPrimitive(separator, String) diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T1.js index e90ed6ffe7..879be1187f 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToString from array arguments esid: sec-array.prototype.join -es5id: 15.4.4.5_A3.2_T1 description: > Checking arguments and separator in ["", "\\", "&", true, Infinity, null, undefind, NaN] diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T2.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T2.js index 4dc0ff12a1..1b386c616a 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T2.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A3.2_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToString from array arguments esid: sec-array.prototype.join -es5id: 15.4.4.5_A3.2_T2 description: If Type(argument) is Object, evaluate ToPrimitive(argument, String) ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A4_T3.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A4_T3.js index 8cebf712d2..dd4b4479dd 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A4_T3.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A4_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.join -es5id: 15.4.4.5_A4_T3 description: length = -4294967294 ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A5_T1.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A5_T1.js index 90ecc5cfff..358636f764 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A5_T1.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A5_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.join -es5id: 15.4.4.5_A5_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A6.6.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A6.6.js index 4dba7b991b..ff16a394ab 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A6.6.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A6.6.js @@ -4,7 +4,6 @@ /*--- info: The join property of Array has not prototype property esid: sec-array.prototype.join -es5id: 15.4.4.5_A6.6 description: Checking Array.prototype.join.prototype ---*/ diff --git a/test/built-ins/Array/prototype/join/S15.4.4.5_A6.7.js b/test/built-ins/Array/prototype/join/S15.4.4.5_A6.7.js index 175df600a2..64d2d32df8 100644 --- a/test/built-ins/Array/prototype/join/S15.4.4.5_A6.7.js +++ b/test/built-ins/Array/prototype/join/S15.4.4.5_A6.7.js @@ -4,7 +4,6 @@ /*--- info: The join property of Array can't be used as constructor esid: sec-array.prototype.join -es5id: 15.4.4.5_A6.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/join/name.js b/test/built-ins/Array/prototype/join/name.js index c84442edb5..e1bf9fda32 100644 --- a/test/built-ins/Array/prototype/join/name.js +++ b/test/built-ins/Array/prototype/join/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.join -es6id: 22.1.3.13 description: > Array.prototype.join.name is "join". info: | diff --git a/test/built-ins/Array/prototype/keys/iteration-mutable.js b/test/built-ins/Array/prototype/keys/iteration-mutable.js index d2a2ecdbbb..14c1f77a17 100644 --- a/test/built-ins/Array/prototype/keys/iteration-mutable.js +++ b/test/built-ins/Array/prototype/keys/iteration-mutable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > New items in the array are accessible via iteration until iterator is "done". info: | diff --git a/test/built-ins/Array/prototype/keys/iteration.js b/test/built-ins/Array/prototype/keys/iteration.js index b684f6a103..4cd69cfc07 100644 --- a/test/built-ins/Array/prototype/keys/iteration.js +++ b/test/built-ins/Array/prototype/keys/iteration.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > The return is a valid iterator with the array's numeric properties. info: | diff --git a/test/built-ins/Array/prototype/keys/length.js b/test/built-ins/Array/prototype/keys/length.js index 2de78c81d3..a9f8f508f0 100644 --- a/test/built-ins/Array/prototype/keys/length.js +++ b/test/built-ins/Array/prototype/keys/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > Array.prototype.keys.length value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/keys/name.js b/test/built-ins/Array/prototype/keys/name.js index 86ec7577c7..5c58cdf364 100644 --- a/test/built-ins/Array/prototype/keys/name.js +++ b/test/built-ins/Array/prototype/keys/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > Array.prototype.keys.name value and descriptor. info: | diff --git a/test/built-ins/Array/prototype/keys/prop-desc.js b/test/built-ins/Array/prototype/keys/prop-desc.js index 4b9f6fa0b2..c59c0b6d54 100644 --- a/test/built-ins/Array/prototype/keys/prop-desc.js +++ b/test/built-ins/Array/prototype/keys/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > Property type and descriptor. info: | diff --git a/test/built-ins/Array/prototype/keys/return-abrupt-from-this.js b/test/built-ins/Array/prototype/keys/return-abrupt-from-this.js index 864549a11f..696550454b 100644 --- a/test/built-ins/Array/prototype/keys/return-abrupt-from-this.js +++ b/test/built-ins/Array/prototype/keys/return-abrupt-from-this.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > Return abrupt from ToObject(this value). info: | diff --git a/test/built-ins/Array/prototype/keys/returns-iterator-from-object.js b/test/built-ins/Array/prototype/keys/returns-iterator-from-object.js index 9864123b4e..db61082a60 100644 --- a/test/built-ins/Array/prototype/keys/returns-iterator-from-object.js +++ b/test/built-ins/Array/prototype/keys/returns-iterator-from-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > Creates an iterator from a custom object. info: | diff --git a/test/built-ins/Array/prototype/keys/returns-iterator.js b/test/built-ins/Array/prototype/keys/returns-iterator.js index 1192d7dabe..636c6f5d69 100644 --- a/test/built-ins/Array/prototype/keys/returns-iterator.js +++ b/test/built-ins/Array/prototype/keys/returns-iterator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.keys -es6id: 22.1.3.13 description: > The method should return an Iterator instance. info: | diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-1.js index a1048adc8f..be6f492501 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-1 description: Array.prototype.lastIndexOf applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-10.js index ba6aec098f..5091090270 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-10 description: Array.prototype.lastIndexOf applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js index ed42913de9..063c4a8830 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-11 description: Array.prototype.lastIndexOf applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-12.js index 26b2c14920..46baea0759 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-12 description: Array.prototype.lastIndexOf applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js index 8ac92c3852..70dc421e09 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-13 description: Array.prototype.lastIndexOf applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-14.js index 13cd332841..cfd5e2a73a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-14 description: Array.prototype.lastIndexOf applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-15.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-15.js index 4d0dcb42a6..b6a4a9155d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-15.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-15 description: Array.prototype.lastIndexOf applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-2.js index ee2d9c1dc9..c4c036ad41 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-2 description: Array.prototype.lastIndexOf applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-3.js index 80339e81ed..36b07fd0ab 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-3 description: Array.prototype.lastIndexOf applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-4.js index 6a71084ce9..d3eb6f52d5 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-4 description: Array.prototype.lastIndexOf applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-5.js index 840ae225c2..4721df572f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-5 description: Array.prototype.lastIndexOf applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-6.js index e35973cd83..1592ab036c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-6 description: Array.prototype.lastIndexOf applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-7.js index 64e4df5ae0..4863fd6aa6 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-7 description: Array.prototype.lastIndexOf applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-8.js index 9983969957..e5586aa8e9 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-8 description: Array.prototype.lastIndexOf applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-9.js index 6d69baa7c3..4262e8ad35 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-1-9 description: Array.prototype.lastIndexOf applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-1.js index 09c37e87c7..432abb8655 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-1 description: > Array.prototype.lastIndexOf - 'length' is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-10.js index 8a17af9c01..08b6b8c3ec 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-10 description: > Array.prototype.lastIndexOf - 'length' is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-11.js index ab2b9fdd70..4a6277dc69 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-11 description: > Array.prototype.lastIndexOf - 'length' is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-12.js index fcd9b41d15..bab6189a1e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-12 description: > Array.prototype.lastIndexOf - 'length' is own accessor property without a get function that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-13.js index 6f379e8861..4dfbd9d78a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-13 description: > Array.prototype.lastIndexOf - 'length' is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-14.js index f47f32dc70..7bd90f4f29 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-14 description: > Array.prototype.lastIndexOf - 'length' is undefined property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-17.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-17.js index 62532d79aa..22df3923cc 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-17.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-17 description: > Array.prototype.lastIndexOf applied to Arguments object which implements its own property get method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-18.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-18.js index f2a6682fe8..3e48f6690e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-18.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-18 description: > Array.prototype.lastIndexOf applied to String object which implements its own property get method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-19.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-19.js index e5542f0ed6..1c9e683330 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-19.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-19 description: > Array.prototype.lastIndexOf applied to String object which implements its own property get method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-2.js index 134cd566a4..b82c60080c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-2 description: > Array.prototype.lastIndexOf - 'length' is own data property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-3.js index 5d2a8bbf1f..201ac6d2e9 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-3 description: > Array.prototype.lastIndexOf - 'length' is own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-4.js index 0a8f124f3a..766946975f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-4 description: > Array.prototype.lastIndexOf when 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-5.js index 33e9075e60..0737be0df1 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-5 description: > Array.prototype.lastIndexOf - 'length' is own data property that overrides an inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-6.js index 05900f832f..dd7e715786 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-6 description: > Array.prototype.lastIndexOf - 'length' is an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-7.js index 4c38da5be2..0f8da4f45c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-7 description: > Array.prototype.lastIndexOf - 'length' is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-8.js index ef7ea0a519..4220074126 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-8 description: > Array.prototype.lastIndexOf - 'length' is own accessor property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-9.js index 9bc7a8b5bd..6daa6ec624 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-2-9 description: > Array.prototype.lastIndexOf - 'length' is own accessor property that overrides an inherited accessor property on an Array-like diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-1.js index 1141fd90a1..327a44ea3e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-1 description: Array.prototype.lastIndexOf - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-10.js index 761fd85c13..f2867f8282 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-10 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-11.js index dae527da98..897893696f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-11 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing positive number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-12.js index 99df97b76d..df4ab593bf 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-12 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing negative number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-13.js index 394744d693..3c1367e1b0 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-13 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-14.js index 3751aeb805..060375e29d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-14 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing -Infinity diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-15.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-15.js index cb669fc016..4c9dcfb915 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-15.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-15 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-16.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-16.js index 653a8ea366..ce2f757325 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-16.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-16 description: > Array.prototype.lastIndexOf - value of 'length' is a string which is able to be converted into hex number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-17.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-17.js index 345e54e146..247aa83ee4 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-17.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-17 description: > Array.prototype.lastIndexOf - value of 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-18.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-18.js index 76161d8da0..c76d578788 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-18.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-18 description: > Array.prototype.lastIndexOf - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-19.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-19.js index bbbf635c8b..ea15e287c7 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-19.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-19 description: > Array.prototype.lastIndexOf - value of 'length' is an Object which has an own toString method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-2.js index 1f603c3804..abfca5541b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-2 description: > Array.prototype.lastIndexOf return -1 when value of 'length' is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-20.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-20.js index 51df323239..2f90b171ad 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-20.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-20 description: > Array.prototype.lastIndexOf - value of 'length' is an Object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-21.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-21.js index 4ffe9d3bfd..fba730f01a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-21.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-21 description: > Array.prototype.lastIndexOf - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-22.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-22.js index 69aa3c8f9e..e6f00ef736 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-22.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-22 description: > Array.prototype.lastIndexOf throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-23.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-23.js index 178517a413..0a9d988631 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-23.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-23 description: > Array.prototype.lastIndexOf uses inherited valueOf method when 'length' is an object with an own toString and an inherited diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-24.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-24.js index 08763b5905..625c720f47 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-24.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-24 description: > Array.prototype.lastIndexOf - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-25.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-25.js index fe78a4e2db..2965bda52a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-25.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-25 description: > Array.prototype.lastIndexOf - value of 'length' is a negative non-integer diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js index 4768053245..effd2deb7f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-28 description: > Array.prototype.lastIndexOf - value of 'length' is boundary value (2^32) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-3.js index 98bb896dff..bcd52c2842 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-3 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is 0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js index 5e6cedae92..9a16d8f741 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-4 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-5.js index 60a1721895..9d9d4ab2d4 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-5 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-6.js index 5f097dbb01..80741e35fc 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-6 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is a positive number) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-7.js index 8f91298497..35495850e6 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-7 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is a negative number) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-9.js index b938783416..5636de9051 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-3-9 description: > Array.prototype.lastIndexOf - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-1.js index f6fc912532..77d9b3b234 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-1 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 (empty array) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-10.js index 1899442e7a..1a672e57cd 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-10 description: Array.prototype.lastIndexOf - 'length' is a number of value -6e-1 ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-11.js index cec59b134a..c1478ed10c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-11 description: Array.prototype.lastIndexOf - 'length' is an empty string ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js index 5ed7ad2496..f7f2bfdf6d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-2 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 ( length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-3.js index 2004e36780..a8623bf77d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-3 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 (length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-4.js index b2babee1dd..5ef792b0a6 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-4 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 (generic 'array' with length 0 ) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-5.js index 9e72015657..f4dae045c2 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-5 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 ( length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-6.js index 1362e14aed..6aafc4d252 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-6 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-7.js index 57850a0270..603b31c102 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-7 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 ( length is object overridden with obj w/o valueOf (toString)) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-8.js index ae98ed9f0f..b0550ade26 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-8 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 (length is an empty array) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-9.js index 7f758adecc..8fde25c46b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-4-9 description: Array.prototype.lastIndexOf - 'length' is a number of value 0.1 ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-1.js index f632c5bf9b..dba02911a8 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-1 description: Array.prototype.lastIndexOf when fromIndex is string ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-10.js index 3e6778af66..57ff98007a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-10 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is positive number) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-11.js index 839e611a8f..10b042248b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-11 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is negative number) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-12.js index 03d5bc0da8..efe2c9655b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-12 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-13.js index f4d78cb56a..208cd6c900 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-13 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-14.js index b400dcad8c..dae3b551aa 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-14 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-15.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-15.js index bf4b902dd2..753663a3b5 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-15.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-15 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-16.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-16.js index ab3089950c..f6f9efc503 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-16.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-16 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a string containing Infinity diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-17.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-17.js index 924884a544..bfbb733c9d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-17.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-17 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a string containing -Infinity diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-18.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-18.js index d5bf6c0fa0..5cfc62cf46 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-18.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-18 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-19.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-19.js index acb1c0140c..473e55ec1e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-19.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-19 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-2.js index 95b4db82b0..aa1d108196 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-2 description: Array.prototype.lastIndexOf when fromIndex is floating point number ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-20.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-20.js index 72a6f16fa0..c435fb18a4 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-20.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-20 description: > Array.prototype.lastIndexOf - value of 'fromIndex' which is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-21.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-21.js index d5ec47052d..63756cb944 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-21.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-21 description: > Array.prototype.lastIndexOf - value of 'fromIndex' which is an Object, and has an own toString method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-22.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-22.js index b3bcfbc461..32f6d5ac30 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-22.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-22 description: > Array.prototype.lastIndexOf - value of 'fromIndex' which is an object, and has an own valueOf method diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-23.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-23.js index e371687ad8..3d0c8d8f73 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-23.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-23 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is an object that has an own valueOf method that returns an object and toString diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-24.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-24.js index 949b07c4ab..ffea148cd2 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-24.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-24 description: > Array.prototype.lastIndexOf throws TypeError exception when value of 'fromIndex' is an object that both toString and valueOf methods diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-25.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-25.js index 8de12b1843..dd38ddc0a6 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-25.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-25 description: > Array.prototype.lastIndexOf use inherited valueOf method when value of 'fromIndex' is an object with an own toString and diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-26.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-26.js index 6b977c909b..1deaf8e9f5 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-26.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-26 description: > Array.prototype.lastIndexOf - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-27.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-27.js index dc56d995c4..8bd1671e6e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-27.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-27 description: > Array.prototype.lastIndexOf - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-28.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-28.js index b2a3da5977..9a4dbdb799 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-28.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-28 description: > Array.prototype.lastIndexOf - side effects produced by step 1 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-29.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-29.js index f1fd8f73a5..e6a73ecb96 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-29.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-29 description: > Array.prototype.lastIndexOf - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-3.js index 57bf7dfd4f..3d4f936aff 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-3 description: Array.prototype.lastIndexOf when fromIndex is boolean ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-30.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-30.js index 4d0ad283f4..b876d26238 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-30.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-30 description: > Array.prototype.lastIndexOf - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-31.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-31.js index 66c4b8c012..2556bc4151 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-31.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-31 description: > Array.prototype.lastIndexOf - 'fromIndex' is a positive non-integer, verify truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-32.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-32.js index 75aed0966d..24cdd52c2f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-32.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-32 description: > Array.prototype.lastIndexOf - 'fromIndex' is a negative non-integer, verify truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-33.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-33.js index 56d5a8ad42..a77e8fe1b7 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-33.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-33 description: > Array.prototype.lastIndexOf - match on the first element, a middle element and the last element when 'fromIndex' is passed diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-4.js index f581274c27..9ce0738a31 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-4 description: Array.prototype.lastIndexOf when fromIndex is undefined ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-5.js index 72efdc3075..c77db40dae 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-5 description: Array.prototype.lastIndexOf when fromIndex is null ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-6.js index 033e078b39..4bba000cf8 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-6 description: Array.prototype.lastIndexOf when 'fromIndex' isn't passed ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-7.js index ec8304ed68..103580e9f1 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-7 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is 0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-8.js index 1a990ae1e7..4980692756 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-8 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-9.js index 509bc38498..562def9665 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-5-9 description: > Array.prototype.lastIndexOf - value of 'fromIndex' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-1.js index 87cf25f0c6..2d5ef6168f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-1 description: > Array.prototype.lastIndexOf when fromIndex greater than Array.length diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-2.js index ce42aa5eb2..0fea6ce3c8 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-2 description: > Array.prototype.lastIndexOf returns correct index when 'fromIndex' is length of array - 1 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-3.js index 7c847f8cba..5799bfe028 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-3 description: > Array.prototype.lastIndexOf returns -1 when 'fromIndex' is length of array - 1 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-4.js index 39484668bf..3a6166ebdd 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-4 description: > Array.prototype.lastIndexOf returns -1 when 'fromIndex' and 'length' are both 0 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-5.js index aa0b12c014..f36c42d881 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-5 description: Array.prototype.lastIndexOf returns -1 when 'fromIndex' is 1 ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-6.js index ac2a303bf0..1060298365 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-6-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-6-6 description: > Array.prototype.lastIndexOf returns correct index when 'fromIndex' is 1 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-1.js index 50f0225fab..6bca165aad 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-7-1 description: Array.prototype.lastIndexOf with negative fromIndex ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-2.js index bec1a892b9..eb868a6e5b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-7-2 description: > Array.prototype.lastIndexOf returns correct index when 'fromIndex' is -1 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-3.js index f240e4c4eb..aa15bd533d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-7-3 description: > Array.prototype.lastIndexOf returns -1 when abs('fromIndex') is length of array - 1 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-4.js index a3b83d9021..377f339814 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-7-4 description: > Array.prototype.lastIndexOf returns -1 when abs('fromIndex') is length of array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-1.js index ba9f6f41db..6b285fe93f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-1 description: Array.prototype.lastIndexOf must return correct index(boolean) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-10.js index 91f6f3c01a..83dfe05448 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-10.js @@ -6,7 +6,6 @@ info: | note that prior to the finally ES5 draft SameValue was used for comparisions and hence NaNs could be found using lastIndexOf * esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-10 description: Array.prototype.lastIndexOf must return correct index (NaN) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-11.js index 0fd222276f..cf79057d83 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-11 description: > Array.prototype.lastIndexOf - the length of iteration isn't changed by adding elements to the array during iteration diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-2.js index 51273ec3b4..eda4e1d46c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-2 description: Array.prototype.lastIndexOf must return correct index(Number) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-3.js index a1f22e7de8..fdc0454046 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-3 description: Array.prototype.lastIndexOf must return correct index(string) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-4.js index e77e8d780b..a2cda7586a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-4 description: Array.prototype.lastIndexOf must return correct index(undefined) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-5.js index 2aea2f8ee1..4defd76a36 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-5 description: Array.prototype.lastIndexOf must return correct index(Object) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-6.js index 18b8888ee7..8e4c7c1912 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-6 description: Array.prototype.lastIndexOf must return correct index(null) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-7.js index 543564a91c..f020f42a71 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-7 description: > Array.prototype.lastIndexOf must return correct index (self reference) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-8.js index b5676e56d2..2b3eeb2a52 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-8 description: Array.prototype.lastIndexOf must return correct index (Array) ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-9.js index c70075216b..aa45e6229c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-9 description: > Array.prototype.lastIndexOf must return correct index (Sparse Array) diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-1.js index 8da0ba48d0..474a13215a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-1 description: > Array.prototype.lastIndexOf - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-10.js index aa82dc85b3..a584fa0166 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-10 description: > Array.prototype.lastIndexOf - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-11.js index c7bd8ed99e..0f608e22fd 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-11 description: > Array.prototype.lastIndexOf - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-12.js index e1b6e93ded..a76f95ca1a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-12 description: > Array.prototype.lastIndexOf - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-13.js index 052114d926..913b7e2213 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-13 description: > Array.prototype.lastIndexOf - deleting property of prototype causes prototype index property not to be visited on an Array-like diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-14.js index 864c9a8fa4..01a31e5a27 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-14 description: > Array.prototype.lastIndexOf - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-15.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-15.js index c9ed09f3a7..b0a79e960f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-15.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-15 description: > Array.prototype.lastIndexOf - deleting own property with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-16.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-16.js index 49b6f786a3..5ebdcf7bdf 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-16.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-16 description: > Array.prototype.lastIndexOf - deleting own property with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-17.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-17.js index 5056ac8a27..f1826dbc21 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-17.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-17 description: > Array.prototype.lastIndexOf - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-18.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-18.js index a34d8b58e7..b5709d8d1d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-18.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-18 description: > Array.prototype.lastIndexOf - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-19.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-19.js index ca788c2bc0..243686fc7b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-19.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-19 description: > Array.prototype.lastIndexOf - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-2.js index 01d4e44dbf..986e12a559 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-2 description: > Array.prototype.lastIndexOf - added properties in step 5 are visible here on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-3.js index 7ceda1ccdd..2d5d0eb91f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-3 description: > Array.prototype.lastIndexOf - added properties in step 5 are visible here on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-4.js index 010ffb36d7..9755da8a3e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-4 description: > Array.prototype.lastIndexOf - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-5.js index cd592d237c..16d1df9f68 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-5 description: > Array.prototype.lastIndexOf - deleted properties of step 5 are visible here on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-6.js index 6b23e07f8d..56f4cfd2bc 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-6 description: > Array.prototype.lastIndexOf - deleted properties of step 5 are visible here on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-7.js index e64cc5bab4..665182f5a5 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-7 description: > Array.prototype.lastIndexOf - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-8.js index ef7d6b6742..6316aead33 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-8 description: > Array.prototype.lastIndexOf - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-9.js index d0d856f617..4ca9d4020e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-a-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-a-9 description: > Array.prototype.lastIndexOf - properties can be added to prototype after current position are visited on an Array-like diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-1.js index 2187b5c1e9..34549dc1f1 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-1 description: Array.prototype.lastIndexOf - undefined property wouldn't be called ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-1.js index 3dfe2ffa10..51c119ae07 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-1 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-10.js index b60f3beb3b..04a5fb7a06 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-10 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-11.js index 6dfa28831c..e80cfcf15b 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-11 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-12.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-12.js index 739d80bb32..57b6e5ee37 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-12.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-12 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-13.js index 70462919d3..ebbfc7be2d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-13.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-13 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-14.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-14.js index 9662f75bd5..d5263b2e1d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-14.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-14 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-15.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-15.js index 32c4149d88..3478fea7db 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-15.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-15 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-16.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-16.js index e8cb635fd9..b28938d9c9 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-16.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-16 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-17.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-17.js index dc14b777b5..94c66880c5 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-17.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-17 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-18.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-18.js index 0a9e3a6936..2fed5ac5b0 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-18.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-18 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-19.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-19.js index d5ca0b3ee1..5dc04b0426 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-19.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-19 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-2.js index 49699b59be..98922ae4ed 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-2 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-20.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-20.js index 1f0b708390..c63ce13fb0 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-20.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-20 description: > Array.prototype.lastIndexOf - element to be retrieved is an own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-21.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-21.js index ee64326c12..83b2465142 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-21.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-21 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-22.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-22.js index 8dbf01f642..8b476fb3fc 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-22.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-22 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-25.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-25.js index d6806a98ed..95dab93f56 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-25.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-25 description: > Array.prototype.lastIndexOf applied to Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-26.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-26.js index b4066d7334..f781d7e83c 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-26.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-26 description: > Array.prototype.lastIndexOf applied to Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-27.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-27.js index 1d9f678632..6f3371f250 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-27.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-27 description: > Array.prototype.lastIndexOf applied to Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-28.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-28.js index d599c9fa45..532ef73b8f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-28.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-28 description: > Array.prototype.lastIndexOf - side-effects are visible in subsequent iterations on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-29.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-29.js index 59ada2f1db..d5014c87d3 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-29.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-29 description: > Array.prototype.lastIndexOf - side-effects are visible in subsequent iterations on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-3.js index 5b82efe114..25d01e8b5a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-3 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-30.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-30.js index 15b600383e..ceee076253 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-30.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-30 description: > Array.prototype.lastIndexOf terminates iteration on unhandled exception on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-31.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-31.js index 0d46b3d56c..7cc8d6c16e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-31.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-31 description: > Array.prototype.lastIndexOf terminates iteration on unhandled exception on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-4.js index 2204423702..9174a0e83a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-4 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-5.js index aa6921e41a..eaae4fb09a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-5 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-6.js index 70e3914190..fc38cef131 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-6 description: > Array.prototype.lastIndexOf - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-7.js index a3c2f49026..a1b82a3dd3 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-7 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-8.js index f06b7bfefc..c08086da5f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-8 description: > Array.prototype.lastIndexOf - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-9.js index d5ff8a47a3..e81487db29 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-i-9 description: > Array.prototype.lastIndexOf - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-1.js index 953212528e..1c7402fd73 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-1 description: > Array.prototype.lastIndexOf - type of array element is different from type of search element diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-10.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-10.js index 7fd083f415..3cf32b980f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-10.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-10 description: > Array.prototype.lastIndexOf - both array element and search element are booleans, and they have same value diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-11.js index bbe7938890..96a5d881f2 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-11.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-11 description: > Array.prototype.lastIndexOf - both array element and search element are Objects, and they refer to the same object diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-2.js index aff50216d1..23975cf5f9 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-2 description: > Array.prototype.lastIndexOf - both type of array element and type of search element are Undefined diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-3.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-3.js index 096ba8d27a..619b41048a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-3.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-3 description: > Array.prototype.lastIndexOf - both type of array element and type of search element are Null diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-4.js index 5d84912d49..8d9870fd5e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-4.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-4 description: Array.prototype.lastIndexOf - search element is NaN ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-5.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-5.js index 6d57147ace..84c67c5c81 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-5.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-5 description: Array.prototype.lastIndexOf - search element is -NaN ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-6.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-6.js index 79b8b8ddae..d818c1dec6 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-6.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-6 description: > Array.prototype.lastIndexOf - array element is +0 and search element is -0 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-7.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-7.js index fb34ac6abd..e1b74ec4f9 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-7.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-7 description: > Array.prototype.lastIndexOf - array element is -0 and search element is +0 diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-8.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-8.js index 2166a5dafc..8d97f1e7d8 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-8.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-8 description: > Array.prototype.lastIndexOf - both array element and search element are numbers, and they have same value diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-9.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-9.js index 9995efc24f..0833b6e5ae 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-9.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-ii-9 description: > Array.prototype.lastIndexOf - both array element and search element are strings, and they have exactly the same sequence of diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-1.js index fe9d13f1a1..a40b26cbe3 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-iii-1 description: > Array.prototype.lastIndexOf returns index of last one when more than two elements in array are eligible diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-2.js index ae16fd014d..673ba6b03f 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-8-b-iii-2 description: > Array.prototype.lastIndexOf returns without visiting subsequent element once search value is found diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-1.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-1.js index 2c4b6a094d..fc071eef3a 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-1.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-9-1 description: Array.prototype.lastIndexOf returns -1 for elements not present ---*/ diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-2.js index e756e32f05..1412ce7d7d 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-2.js +++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-9-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es5id: 15.4.4.15-9-2 description: > Array.prototype.lastIndexOf returns -1 if 'length' is 0 and does not access any other properties diff --git a/test/built-ins/Array/prototype/lastIndexOf/name.js b/test/built-ins/Array/prototype/lastIndexOf/name.js index 78710a7af2..e105d7c89e 100644 --- a/test/built-ins/Array/prototype/lastIndexOf/name.js +++ b/test/built-ins/Array/prototype/lastIndexOf/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.lastindexof -es6id: 22.1.3.15 description: > Array.prototype.lastIndexOf.name is "lastIndexOf". info: | diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-1.js index 15edce5b1e..27d6aa6fae 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-1 description: Array.prototype.map - applied to undefined ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-10.js index 52eb839eba..20362597b4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-10 description: Array.prototype.map - applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-11.js index 4858511196..003521b822 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-11 description: Array.prototype.map - applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-12.js index ed40782e89..3c8b7310c8 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-12 description: Array.prototype.map - applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-13.js index a17d877bd7..72ee7d41b9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-13 description: Array.prototype.map - applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-14.js index 2fc430d6d4..c2c3020f71 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-14 description: Array.prototype.map - applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-15.js index a8774bf2fc..08b3721caa 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-15 description: Array.prototype.map - applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-2.js index 864d017a07..511b29f38c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-2 description: Array.prototype.map - applied to null ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-3.js index 3566c0ee49..7604f6c2a0 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-3 description: Array.prototype.map - applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-4.js index 82e9e614e5..fa35e0713e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-4 description: Array.prototype.map - applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-5.js index 6a04e9177d..4a3d24b157 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-5 description: Array.prototype.map - applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-6.js index ac9c03bca2..b3209a8f55 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-6 description: Array.prototype.map - applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-7.js index 402368ebd8..5091bd3eba 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-7 description: Array.prototype.map - applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-8.js index 93ca61e4fc..865c84422a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-8 description: Array.prototype.map - applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-1-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-1-9.js index 82f5918aa3..3f906733e1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-1-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-1-9 description: Array.prototype.map - applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-1.js index 9e89b6d856..ce97fe026e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-1 description: > Array.prototype.map - applied to Array-like object when 'length' is an own data property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-10.js index 9a74b1e09a..dc1693fc1d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-10 description: > Array.prototype.map - applied to Array-like object, 'length' is an inherited accessor property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-11.js index c026c69712..3dd07ff9b3 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-11 description: > Array.prototype.map - applied to Array-like object when 'length' is an own accessor property without a get function diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-12.js index 93d0ceada0..ecc50de167 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-12 description: > Array.prototype.map - applied to the Array-like object when 'length' is own accessor property without a get function that diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-13.js index 756b3754fe..05b6e7178f 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-13 description: > Array.prototype.map - applied to the Array-like object when 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-14.js index 6b3f226099..3e9fe4d832 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-14 description: > Array.prototype.map - applied to the Array-like object that 'length' property doesn't exist diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-17.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-17.js index 28607e1b68..36908aaa13 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-17.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-17 description: > Array.prototype.map - applied to Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-18.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-18.js index 16f307c0fc..32724fa1d3 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-18.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-18 description: > Array.prototype.map - applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-19.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-19.js index c2dbc89e3a..1ff7002a22 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-19.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-19 description: > Array.prototype.map - applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js index 46aa6c4fbb..58572abcb0 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-2 description: > Array.prototype.map - when 'length' is own data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-3.js index 4c6c6b18df..d8bf581498 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-3 description: > Array.prototype.map - applied to Array-like object, 'length' is an own data property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-4.js index eab5b1cb3b..83c1067d6c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-4 description: > Array.prototype.map - when 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-5.js index a636e0655f..ff666ceb72 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-5 description: > Array.prototype.map - applied to Array-like object, 'length' is an own data property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-6.js index 1cd5e51a2c..17d1d8feb9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-6 description: > Array.prototype.map - applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-7.js index 6853ad8d30..6c3128a684 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-7 description: > Array.prototype.map - applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-8.js index abbf6ab285..102d43a071 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-8 description: > Array.prototype.map - applied to Array-like object, 'length' is an own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-9.js index 043d20e1b4..a2e3c09de1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-2-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-2-9 description: > Array.prototype.map - applied to Array-like object when 'length' is an own accessor property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-1.js index 364277255e..9c18e20300 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-1 description: Array.prototype.map - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-10.js index ec607589a8..11a34b1bd4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-10 description: Array.prototype.map - value of 'length' is a number (value is NaN) ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-11.js index 78210aa745..8dc64fc83a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-11 description: > Array.prototype.map - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-12.js index a355dc5b2b..a4c473295d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-12 description: > Array.prototype.map - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-13.js index 704ea0f16d..39457bb391 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-13 description: > Array.prototype.map - value of 'length' is string that is able to convert to number primitive (value is a decimal number) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-14.js index 1b57ec3679..6c2d9ba217 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-14 description: Array.prototype.map - 'length' is a string containing Infinity ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-15.js index 100952bcde..30734928a6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-15 description: > Array.prototype.map - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-16.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-16.js index d227a73ec0..cb9db1b3bd 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-16.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-16 description: Array.prototype.map - 'length' is a string containing a hex number ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-17.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-17.js index 5c7446c41e..6909ad5960 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-17.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-17 description: > Array.prototype.map - when 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-18.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-18.js index bbd1b8b5a0..2e79c5d3d1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-18.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-18 description: > Array.prototype.map - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-19.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-19.js index 2f5e2b414f..a89cfe4469 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-19.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-19 description: > Array.prototype.map - value of 'length' is an Object which has an own toString method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-2.js index 0dae4ae485..48216b7031 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-2 description: > Array.prototype.map on an Array-like object if 'length' is 1 (length overridden to true(type conversion)) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-20.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-20.js index bc431d8a72..f4e1f19812 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-20.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-20 description: > Array.prototype.map - value of 'length' is an Object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-21.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-21.js index fb22c73551..3ec8559e20 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-21.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-21 description: > Array.prototype.map - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-22.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-22.js index a7825b1c13..0226de0637 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-22.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-22 description: > Array.prototype.map throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-23.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-23.js index 44269d0816..6ac1bd1cb7 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-23.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-23 description: > Array.prototype.map uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf methods diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-24.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-24.js index 870a5631c4..f546bf02bf 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-24.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-24 description: > Array.prototype.map - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-25.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-25.js index 3c7138f672..8961284856 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-25.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-25 description: Array.prototype.map - value of 'length' is a negative non-integer ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-28.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-28.js index b4c3e3b311..ba29174ed4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-28.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-28 description: Array.prototype.map - value of 'length' is boundary value (2^32) ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-29.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-29.js index 613ab9c8e6..4b96a5165c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-29.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-29 description: > Array.prototype.map - value of 'length' is boundary value (2^32 + 1) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-3.js index 096a0c3236..d8ae14f024 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-3 description: Array.prototype.map - value of 'length' is a number (value is 0) ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-4.js index c3d6fbc9cb..3c7a471c0b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-4 description: Array.prototype.map - value of 'length' is a number (value is +0) ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-5.js index d467cfe172..1630e1ca8f 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-5 description: Array.prototype.map - value of 'length' is a number (value is -0) ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-6.js index 794464e22a..f43bed22c1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-6 description: > Array.prototype.map - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-7.js index a5215ce4fb..f3e420040c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-7 description: > Array.prototype.map - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-8.js index 3677932afd..16b25e42bf 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-8 description: > Array.prototype.map - value of 'length' is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-3-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-3-9.js index a97e6065ee..21104b962f 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-3-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-3-9 description: > Array.prototype.map - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-1.js index fc826857a1..8339b2b18d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-1 description: Array.prototype.map throws TypeError if callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-10.js index 74bc391271..fe10f1ce48 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-10 description: > Array.prototype.map - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-11.js index 5723ab3ed8..f64bfbb762 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-11 description: > Array.prototype.map - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-12.js index 45d301f5f4..1c6ad62a8d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-12 description: Array.prototype.map - 'callbackfn' is a function ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-15.js index 3df2d5ab4e..c1c89ef0d3 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-15 description: > Array.prototype.map - calling with no callbackfn is the same as passing undefined for callbackfn diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-2.js index 1da77da817..557507d461 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-2 description: > Array.prototype.map throws ReferenceError if callbackfn is unreferenced diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-3.js index d6e5f8d341..d4f5905234 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-3 description: Array.prototype.map throws TypeError if callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-4.js index fe8918bfca..793ca0f140 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-4 description: Array.prototype.map throws TypeError if callbackfn is boolean ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-5.js index b6c230364a..abf72df0bb 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-5 description: Array.prototype.map throws TypeError if callbackfn is number ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-6.js index df6ccdb90d..98a747f40c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-6 description: Array.prototype.map throws TypeError if callbackfn is string ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-7.js index d795447cb1..0caa20a550 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-7 description: > Array.prototype.map throws TypeError if callbackfn is Object without Call internal method diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-8.js index f7914a9410..b94e3b7c02 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-8 description: > Array.prototype.map - Side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-4-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-4-9.js index 03ecedcc6a..33c371a323 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-4-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-4-9 description: > Array.prototype.map - Side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-1-s.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-1-s.js index a2e997d8b4..1248748b7e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-1-s.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-1-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-1-s description: Array.prototype.map - thisArg not passed to strict callbackfn flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-1.js index a2b7393a98..41a1362288 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-1 description: Array.prototype.map - thisArg not passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-10.js index a2c4d150b4..6d991aec84 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-10 description: Array.prototype.map - Array object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-11.js index 98cd84ad18..3d4f8504f6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-11 description: Array.prototype.map - String object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-12.js index 0fbcf8f7a9..306acdae07 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-12 description: Array.prototype.map - Boolean object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-13.js index a02c29a9e0..6bb2bae8f5 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-13 description: Array.prototype.map - Number object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-14.js index 01a23927ac..16932f8330 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-14 description: Array.prototype.map - the Math object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-15.js index 9dd98f5822..5fef396b09 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-15 description: Array.prototype.map - Date object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-16.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-16.js index f34254d011..7e973ab3ca 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-16.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-16 description: Array.prototype.map - RegExp object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-17.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-17.js index 42d67bbeff..223fb6e3ac 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-17.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-17 description: Array.prototype.map - the JSON object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-18.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-18.js index e3032b4f47..cdb58aa6e6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-18.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-18 description: Array.prototype.map - Error object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-19.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-19.js index c2740c110b..5cc4263c4e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-19.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-19 description: Array.prototype.map - the Arguments object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-2.js index fdb667af1b..17e4ee5237 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-2 description: Array.prototype.map - thisArg is Object ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-21.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-21.js index 0f105c52ce..fe391b8e04 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-21.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-21 description: Array.prototype.map - the global object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js index 1386aa7493..fbdbb21602 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-22 description: Array.prototype.map - boolean primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-23.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-23.js index 8e7ee98356..2d968412a6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-23.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-23 description: Array.prototype.map - number primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-24.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-24.js index cb29707e65..a6ed3c61ab 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-24.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-24 description: Array.prototype.map - string primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-3.js index 97dd1e7280..bafaa303a9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-3 description: Array.prototype.map - thisArg is Array ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-4.js index 85ee3deec9..87486f51ad 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-4 description: > Array.prototype.map - thisArg is object from object template(prototype) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-5.js index 9568cc3d49..9f0bc7a76a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-5 description: Array.prototype.map - thisArg is object from object template ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-6.js index 20366e19c6..7df1c74604 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-6 description: Array.prototype.map - thisArg is function ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-7.js index 7f11fa6764..202e901238 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-7 description: Array.prototype.map - built-in functions can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-9.js index 31f536819c..548d77813b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-5-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-5-9 description: Array.prototype.map - Function object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-6-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-6-1.js index b72e54a44a..2dbdca1c22 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-6-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-6-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-6-1 description: > Array.prototype.map - Array.isArray returns true when input argument is the ourput array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-6-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-6-2.js index 593496d851..ba7602d743 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-6-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-6-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-6-2 description: Array.prototype.map - the returned array is instanceof Array ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-1.js index 07255dc87f..5fec77f00e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-1 description: > Array.prototype.map doesn't consider new elements added to array after it is called diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-2.js index 17ff67f93e..a7d2d32616 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-2 description: > Array.prototype.map considers new value of elements in array after it is called diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-3.js index 10ef81567f..28f38a8eda 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-3 description: > Array.prototype.map doesn't visit deleted elements in array after the call diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-4.js index e488c81494..2890662fdc 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-4 description: > Array.prototype.map doesn't visit deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-5.js index 969ef76b08..0a55906f6c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-5 description: > Array.prototype.map doesn't consider newly added elements in sparse array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-6.js index 1a3d4c1755..1f12d8f516 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-6 description: > Array.prototype.map visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-7.js index 537e153f5c..fdbce7c51c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-7 description: Array.prototype.map successful to delete the object in callbackfn ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-8.js index 0a9f95ed4b..68924253a9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-8 description: > Array.prototype.map - no observable effects occur if length is 0 on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-9.js index 5f47a3a63a..9b3fe60fba 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-9 description: > Array.prototype.map - modifications to length don't change number of iterations on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-1.js index ff4a57e8ae..d9fa4c0088 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-1 description: > Array.prototype.map - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-10.js index 18ef426fb6..5d970ef98e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-10 description: > Array.prototype.map - deleting property of prototype causes prototype index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-11.js index d194b572bf..a80a343ed1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-11 description: > Array.prototype.map - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-12.js index 8d6fd84c8c..1767bb9ef9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-12 description: > Array.prototype.map - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-13.js index 7cea73c735..b5e63ae6eb 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-13 description: > Array.prototype.map - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-14.js index 45131bd9a5..ee3ed98a7b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-14 description: > Array.prototype.map - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-15.js index 2cf1762a52..cf61ddb014 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-15 description: > Array.prototype.map - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-16.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-16.js index 5e5290fdda..5aa0d5abdb 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-16.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-16 description: > Array.prototype.map - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-2.js index 74108f0927..bb18b1b1a2 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-2 description: Array.prototype.map - added properties in step 2 are visible here ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-3.js index 957b9048a1..4f4df4f709 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-3 description: Array.prototype.map - deleted properties in step 2 are visible here ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-4.js index bf1e739fbb..5755f0a111 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-4 description: > Array.prototype.map - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-5.js index c0ca4d2591..cbb4c5e505 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-5 description: > Array.prototype.map - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-6.js index 6f983455ee..7c0195e814 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-6 description: > Array.prototype.map - properties can be added to prototype after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-7.js index 5e40ddb273..42ffdb27fb 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-7 description: > Array.prototype.map - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-8.js index 58f3ac9c18..33e0ab14d2 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-8 description: > Array.prototype.map - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-9.js index a1dd861f20..5c4c47a171 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-b-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-b-9 description: > Array.prototype.map - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-1.js index 16b3fe3261..bbc11499f1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-1 description: > Array.prototype.map - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-10.js index f9809a1a58..6ecd24ee1d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-10 description: > Array.prototype.map - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-11.js index db7bfa03d3..c64a0c93c7 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-11 description: > Array.prototype.map - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-12.js index 9f61f72be7..c6630f8398 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-12 description: > Array.prototype.map - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-13.js index 3ca3d54de9..5537aab9ce 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-13 description: > Array.prototype.map - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-14.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-14.js index 148bf9dbcb..5396c9e80f 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-14.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-14 description: > Array.prototype.map - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-15.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-15.js index 590dbe8bd0..fc77b49683 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-15.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-15 description: > Array.prototype.map - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-16.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-16.js index 8be14c2d29..ee71bf6af2 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-16.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-16 description: > Array.prototype.map - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-17.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-17.js index 9c0a96b09a..902fb3c1c6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-17.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-17 description: > Array.prototype.map - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-18.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-18.js index 142b2878da..710958c53d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-18.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-18 description: > Array.prototype.map - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-19.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-19.js index f20dbc0985..c598b5bbe7 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-19.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-19 description: > Array.prototype.map - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-2.js index b3c0686e22..fbad2b898d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-2 description: > Array.prototype.map - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-20.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-20.js index 79faa22950..b12d0f7d1e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-20.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-20 description: > Array.prototype.map - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-21.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-21.js index d7e36fc415..17904d3762 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-21.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-21 description: > Array.prototype.map - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-22.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-22.js index 1a4ba76c0e..f69e7fe987 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-22.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-22 description: > Array.prototype.map - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-25.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-25.js index 74fd1615f9..518032c1d6 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-25.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-25 description: > Array.prototype.map - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-26.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-26.js index 66bb232339..168755ee37 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-26.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-26 description: > Array.prototype.map - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-27.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-27.js index c47bd08c3d..cb1a7cb844 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-27.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-27 description: > Array.prototype.map - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-28.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-28.js index 142bcdd8d0..a58457b7c2 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-28.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-28 description: > Array.prototype.map - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-29.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-29.js index 9d97893b81..cf6d9ba002 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-29.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-29 description: > Array.prototype.map - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-3.js index dac643e4e5..d145752ad4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-3 description: > Array.prototype.map - element to be retrieved is own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-30.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-30.js index cae9865e2e..c2a1e7d0a1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-30.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-30 description: > Array.prototype.map - unhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-31.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-31.js index 094568212e..ade77b6b9a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-31.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-31 description: > Array.prototype.map - unhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-4.js index cf77e37961..242b9ae0e1 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-4 description: > Array.prototype.map - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-5.js index cf2c63c9b8..69e966337b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-5 description: > Array.prototype.map - element to be retrieved is own data property that overrides an inherited accessor property on an Array-like diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-6.js index 4c9ae77760..8e48e94d81 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-6 description: > Array.prototype.map - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-7.js index 908e1e6b1c..8d2946eb14 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-7 description: > Array.prototype.map - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-8.js index 03d312b30e..0dbba05b34 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-8 description: > Array.prototype.map - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-9.js index 2d58d345f7..c4a2cbf72a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-i-9 description: > Array.prototype.map - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-1.js index 94a0fad1d3..4181ff5028 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-1 description: Array.prototype.map - callbackfn called with correct parameters ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-10.js index 546a841428..d2974443e2 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-10 description: Array.prototype.map - callbackfn is called with 1 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-11.js index 503c65ad35..d5b7a5c0ba 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-11 description: Array.prototype.map - callbackfn is called with 2 formal parameters ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-12.js index d97ab07072..a90b8ff4ae 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-12 description: Array.prototype.map - callbackfn is called with 3 formal parameters ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-13.js index cf89b22597..9296fad1db 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-13 description: > Array.prototype.map - callbackfn that uses arguments object to get parameter value diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-16.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-16.js index bc4d4dce5d..ed79ee26a4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-16.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-16 description: > Array.prototype.map - 'this' object when T is not an object (T is a boolean primitive) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-17.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-17.js index e095ed03e5..947604d366 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-17.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-17 description: > Array.prototype.map - 'this' object when T is not an object (T is a number) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-18.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-18.js index 90501719bb..182e6f20cf 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-18.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-18 description: > Array.prototype.map - 'this' object when T is not an object (T is a string primitive) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-19.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-19.js index a638a31262..816d47e651 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-19.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-19 description: Array.prototype.map - non-indexed properties are not called. ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-2.js index 34a8c1a411..9c57908413 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-2 description: Array.prototype.map - callbackfn takes 3 arguments ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-20.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-20.js index 96f50c481c..2b3f0d035a 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-20.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-20 description: > Array.prototype.map - callbackfn called with correct parameters (thisArg is correct) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-21.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-21.js index 50cd9a2cdd..796b6458a8 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-21.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-21 description: > Array.prototype.map - callbackfn called with correct parameters (kValue is correct) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-22.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-22.js index a5a30861ad..ca94825b37 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-22.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-22 description: > Array.prototype.map - callbackfn called with correct parameters (the index k is correct) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-23.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-23.js index fd14317056..3243d9dd81 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-23.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-23 description: > Array.prototype.map - callbackfn called with correct parameters (this object O is correct) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-4.js index 5fe857f933..0a958aef7b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-4 description: Array.prototype.map - k values are passed in acending numeric order ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-5.js index d0d8859c67..b59b88138c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-5 description: > Array.prototype.map - k values are accessed during each iteration and not prior to starting the loop. diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-6.js index 7ac9796c3e..e64809050d 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-6 description: Array.prototype.map - arguments to callbackfn are self consistent. ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-7.js index 0ae5970fef..fddd51cf55 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-7 description: > Array.prototype.map - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-8.js index e4e4d231da..1fb8e0937b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-8 description: > Array.prototype.map - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-9.js index 3554ac85b5..f611f4349e 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-ii-9 description: Array.prototype.map - callbackfn with 0 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-1.js index 5f759befbe..4fa95ba7fb 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-iii-1 description: > Array.prototype.map - getOwnPropertyDescriptor(all true) of returned array element diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-2.js index 6f5cbb81bb..3f42ad3f86 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-iii-2 description: > Array.prototype.map - value of returned array element equals to 'mappedValue' diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-3.js index 7525d1b0c0..fe00673bd4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-iii-3 description: > Array.prototype.map - value of returned array element can be overwritten diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-4.js index 4b918884d4..4a4cfb62da 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-iii-4 description: > Array.prototype.map - value of returned array element can be enumerated diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-5.js index 44eaea59e1..e3ff486396 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-8-c-iii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-8-c-iii-5 description: > Array.prototype.map - value of returned array element can be changed or deleted diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-1.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-1.js index a9cb1f51e8..5f9ee2884c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-1.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-1 description: > Array.prototype.map doesn't mutate the Array on which it is called on diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-10.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-10.js index 5407e1ee9e..35716de390 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-10.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-10 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-11.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-11.js index aa0fd88912..6f05c86c43 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-11.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-11 description: > Array.prototype.map - returns an empty array if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-12.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-12.js index 9ae64cd57a..719aa22206 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-12.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-12 description: > Array.prototype.map - returns an empty array if 'length' is 0 (subclassed Array, length overridden with []) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-13.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-13.js index f84a937eec..1b370f849f 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-13.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-13 description: > Array.prototype.map - if there are no side effects of the functions, O is unmodified diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-2.js index cc3657e87c..ae9c94fb1c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-2.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-2 description: > Array.prototype.map returns new Array with same number of elements and values the result of callbackfn diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-3.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-3.js index 815868a482..091d937718 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-3.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-3 description: Array.prototype.map - subclassed array when length is reduced ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-4.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-4.js index 3c01de3d0a..ffe861e92b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-4.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-4 description: Array.prototype.map doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-5.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-5.js index 6c04bb72e4..af1f76e3a9 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-5.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-5 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (empty array) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-6.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-6.js index a44859e171..18d94bc2a0 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-6.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-6 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (subclassed Array, length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-7.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-7.js index 3370cc36ca..6ed44f8c3b 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-7.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-7 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (subclassed Array, length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-8.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-8.js index 9e08d61d39..027143a3f4 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-8.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-8 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)) diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-9-9.js b/test/built-ins/Array/prototype/map/15.4.4.19-9-9.js index 73425afa10..8ef22dbd1c 100644 --- a/test/built-ins/Array/prototype/map/15.4.4.19-9-9.js +++ b/test/built-ins/Array/prototype/map/15.4.4.19-9-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es5id: 15.4.4.19-9-9 description: > Array.prototype.map - empty array to be returned if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/map/create-ctor-non-object.js b/test/built-ins/Array/prototype/map/create-ctor-non-object.js index 505b661cee..f45f695999 100644 --- a/test/built-ins/Array/prototype/map/create-ctor-non-object.js +++ b/test/built-ins/Array/prototype/map/create-ctor-non-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: > Behavior when `constructor` property is neither an Object nor undefined diff --git a/test/built-ins/Array/prototype/map/create-ctor-poisoned.js b/test/built-ins/Array/prototype/map/create-ctor-poisoned.js index 39318bb94e..1f7a331237 100644 --- a/test/built-ins/Array/prototype/map/create-ctor-poisoned.js +++ b/test/built-ins/Array/prototype/map/create-ctor-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Abrupt completion from `constructor` property access info: | diff --git a/test/built-ins/Array/prototype/map/create-non-array-invalid-len.js b/test/built-ins/Array/prototype/map/create-non-array-invalid-len.js index 125e50a387..782ab2d28a 100644 --- a/test/built-ins/Array/prototype/map/create-non-array-invalid-len.js +++ b/test/built-ins/Array/prototype/map/create-non-array-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Abrupt completion from creating a new array info: | diff --git a/test/built-ins/Array/prototype/map/create-non-array.js b/test/built-ins/Array/prototype/map/create-non-array.js index 077d421df9..e60d311ec8 100644 --- a/test/built-ins/Array/prototype/map/create-non-array.js +++ b/test/built-ins/Array/prototype/map/create-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Constructor is ignored for non-Array values info: | diff --git a/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-array.js index ef39366024..84a646fb3d 100644 --- a/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.15 esid: sec-array.prototype.map description: Prefer Array constructor of current realm record info: | diff --git a/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-non-array.js b/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-non-array.js index 967a76f816..58fb244990 100644 --- a/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-non-array.js +++ b/test/built-ins/Array/prototype/map/create-proto-from-ctor-realm-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.15 esid: sec-array.prototype.map description: Accept non-Array constructors from other realms info: | diff --git a/test/built-ins/Array/prototype/map/create-proxy.js b/test/built-ins/Array/prototype/map/create-proxy.js index cdd55df15d..4f30e1f5e4 100644 --- a/test/built-ins/Array/prototype/map/create-proxy.js +++ b/test/built-ins/Array/prototype/map/create-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.15 esid: sec-array.prototype.map description: Species constructor of a Proxy object whose target is an array info: | diff --git a/test/built-ins/Array/prototype/map/create-revoked-proxy.js b/test/built-ins/Array/prototype/map/create-revoked-proxy.js index 77967d256e..a110e85ffa 100644 --- a/test/built-ins/Array/prototype/map/create-revoked-proxy.js +++ b/test/built-ins/Array/prototype/map/create-revoked-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Abrupt completion from constructor that is a revoked Proxy object info: | diff --git a/test/built-ins/Array/prototype/map/create-species-abrupt.js b/test/built-ins/Array/prototype/map/create-species-abrupt.js index 5c6656f281..b1084c034d 100644 --- a/test/built-ins/Array/prototype/map/create-species-abrupt.js +++ b/test/built-ins/Array/prototype/map/create-species-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Species constructor returns an abrupt completion info: | diff --git a/test/built-ins/Array/prototype/map/create-species-non-ctor.js b/test/built-ins/Array/prototype/map/create-species-non-ctor.js index 661894f6ff..d448b4ebb8 100644 --- a/test/built-ins/Array/prototype/map/create-species-non-ctor.js +++ b/test/built-ins/Array/prototype/map/create-species-non-ctor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: > Behavior when the @@species attribute is a non-constructor object diff --git a/test/built-ins/Array/prototype/map/create-species-null.js b/test/built-ins/Array/prototype/map/create-species-null.js index 54b7a97d29..791883f9d4 100644 --- a/test/built-ins/Array/prototype/map/create-species-null.js +++ b/test/built-ins/Array/prototype/map/create-species-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: > A null value for the @@species constructor is interpreted as `undefined` diff --git a/test/built-ins/Array/prototype/map/create-species-poisoned.js b/test/built-ins/Array/prototype/map/create-species-poisoned.js index a232b6aa0d..5944debb1a 100644 --- a/test/built-ins/Array/prototype/map/create-species-poisoned.js +++ b/test/built-ins/Array/prototype/map/create-species-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Abrupt completion from `@@species` property access info: | diff --git a/test/built-ins/Array/prototype/map/create-species-undef-invalid-len.js b/test/built-ins/Array/prototype/map/create-species-undef-invalid-len.js index bcd781bca6..84a126cd21 100644 --- a/test/built-ins/Array/prototype/map/create-species-undef-invalid-len.js +++ b/test/built-ins/Array/prototype/map/create-species-undef-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/map/create-species-undef.js b/test/built-ins/Array/prototype/map/create-species-undef.js index 593714f2d9..898b82a942 100644 --- a/test/built-ins/Array/prototype/map/create-species-undef.js +++ b/test/built-ins/Array/prototype/map/create-species-undef.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/map/create-species.js b/test/built-ins/Array/prototype/map/create-species.js index ebcbdf9522..1e0242dfe7 100644 --- a/test/built-ins/Array/prototype/map/create-species.js +++ b/test/built-ins/Array/prototype/map/create-species.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.16 esid: sec-array.prototype.map description: Species constructor is used to create a new instance info: | diff --git a/test/built-ins/Array/prototype/map/name.js b/test/built-ins/Array/prototype/map/name.js index 5278c18d4a..0756461ccd 100644 --- a/test/built-ins/Array/prototype/map/name.js +++ b/test/built-ins/Array/prototype/map/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.map -es6id: 22.1.3.15 description: > Array.prototype.map.name is "map". info: | diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.1_T1.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.1_T1.js index f0c867df5e..c96a073039 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.1_T1.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.1_T1.js @@ -6,7 +6,6 @@ info: | If length equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined esid: sec-array.prototype.pop -es5id: 15.4.4.6_A1.1_T1 description: Checking this algorithm ---*/ diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.2_T1.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.2_T1.js index 0e0cf824a1..7214e127ca 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.2_T1.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A1.2_T1.js @@ -6,7 +6,6 @@ info: | The last element of the array is removed from the array and returned esid: sec-array.prototype.pop -es5id: 15.4.4.6_A1.2_T1 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T1.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T1.js index 0ab566a45d..2556476ed6 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T1.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T1.js @@ -6,7 +6,6 @@ info: | The pop function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.pop -es5id: 15.4.4.6_A2_T1 description: > If ToUint32(length) equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js index 3573d2a234..457197debd 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js @@ -6,7 +6,6 @@ info: | The pop function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.pop -es5id: 15.4.4.6_A2_T2 description: > If ToUint32(length) equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T3.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T3.js index f676e1c752..a92c37898d 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T3.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T3.js @@ -6,7 +6,6 @@ info: | The pop function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.pop -es5id: 15.4.4.6_A2_T3 description: > The last element ToUint32(length) - 1 of the array is removed from the array and returned diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T4.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T4.js index d4dcd8184b..7d5fcbc5fd 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T4.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T4.js @@ -6,7 +6,6 @@ info: | The pop function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.pop -es5id: 15.4.4.6_A2_T4 description: > Operator use ToNumber from length. If Type(value) is Object, evaluate ToPrimitive(value, Number) diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js index 424b9943c7..b7b1d251a3 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.pop -es5id: 15.4.4.6_A3_T1 description: length = 4294967296 ---*/ diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js index b309bc48ad..d5d105f556 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.pop -es5id: 15.4.4.6_A3_T2 description: length = 4294967297 ---*/ diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T3.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T3.js index 56919c5557..73e6d0766a 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T3.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.pop -es5id: 15.4.4.6_A3_T3 description: length = -1 ---*/ diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T1.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T1.js index b5ebe7a12a..aea18ed611 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T1.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.pop -es5id: 15.4.4.6_A4_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T2.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T2.js index 3592d72532..eb4f7c86d0 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T2.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.pop -es5id: 15.4.4.6_A4_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/pop/S15.4.4.6_A5.7.js b/test/built-ins/Array/prototype/pop/S15.4.4.6_A5.7.js index e6307516cd..7185b3e7bf 100644 --- a/test/built-ins/Array/prototype/pop/S15.4.4.6_A5.7.js +++ b/test/built-ins/Array/prototype/pop/S15.4.4.6_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The pop property of Array can't be used as constructor esid: sec-array.prototype.pop -es5id: 15.4.4.6_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/pop/name.js b/test/built-ins/Array/prototype/pop/name.js index 3b6a231c43..0ee7934045 100644 --- a/test/built-ins/Array/prototype/pop/name.js +++ b/test/built-ins/Array/prototype/pop/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.pop -es6id: 22.1.3.16 description: > Array.prototype.pop.name is "pop". info: | diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T1.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T1.js index 6ed8359ed2..4780de9205 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T1.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T1.js @@ -7,7 +7,6 @@ info: | the order in which they appear. The new length of the array is returned as the result of the call esid: sec-array.prototype.push -es5id: 15.4.4.7_A1_T1 description: Checking case when push is given no arguments or one argument ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T2.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T2.js index d41386d305..117d2bf7e1 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T2.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A1_T2.js @@ -7,7 +7,6 @@ info: | the order in which they appear. The new length of the array is returned as the result of the call esid: sec-array.prototype.push -es5id: 15.4.4.7_A1_T2 description: Checking case when push is given many arguments ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T1.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T1.js index 8d2e84db96..dc420d7fb2 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T1.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T1.js @@ -6,7 +6,6 @@ info: | The push function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.push -es5id: 15.4.4.7_A2_T1 description: > The arguments are appended to the end of the array, in the order in which they appear. The new length of the array is returned as diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js index 6c5c1c4adc..dc88e36fec 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js @@ -6,7 +6,6 @@ info: | The push function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.push -es5id: 15.4.4.7_A2_T2 description: > The arguments are appended to the end of the array, in the order in which they appear. The new length of the array is returned as diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T3.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T3.js index 32aa882169..6df7ff2fdf 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T3.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A2_T3.js @@ -6,7 +6,6 @@ info: | The push function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.push -es5id: 15.4.4.7_A2_T3 description: > Operator use ToNumber from length. If Type(value) is Object, evaluate ToPrimitive(value, Number) diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A3.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A3.js index d9b26a6e34..97053ad3cb 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A3.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for Array object esid: sec-array.prototype.push -es5id: 15.4.4.7_A3 description: If ToUint32(length) !== length, throw RangeError ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js index 90ed3ae4cf..82d9c74e9c 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.push -es5id: 15.4.4.7_A4_T1 description: length = 4294967296 ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T2.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T2.js index 0ed4b027c4..2b04c34baf 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T2.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.push -es5id: 15.4.4.7_A4_T2 description: length = 4294967295 ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T3.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T3.js index afaf0b143d..c6bb5dd6d0 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T3.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A4_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.push -es5id: 15.4.4.7_A4_T3 description: length = -1 ---*/ diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A5_T1.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A5_T1.js index 70f1b41ac3..18f6fc78f7 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A5_T1.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A5_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.push -es5id: 15.4.4.7_A5_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/push/S15.4.4.7_A6.7.js b/test/built-ins/Array/prototype/push/S15.4.4.7_A6.7.js index 944c042a74..a6f1085011 100644 --- a/test/built-ins/Array/prototype/push/S15.4.4.7_A6.7.js +++ b/test/built-ins/Array/prototype/push/S15.4.4.7_A6.7.js @@ -4,7 +4,6 @@ /*--- info: The push property of Array can't be used as constructor esid: sec-array.prototype.push -es5id: 15.4.4.7_A6.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/push/name.js b/test/built-ins/Array/prototype/push/name.js index c3cc346bde..166083d515 100644 --- a/test/built-ins/Array/prototype/push/name.js +++ b/test/built-ins/Array/prototype/push/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.push -es6id: 22.1.3.17 description: > Array.prototype.push.name is "push". info: | diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-1.js index 264cd7934a..faf466347c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-1 description: Array.prototype.reduce applied to undefined ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-10.js index 04bb5ee2a3..482f30968b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-10 description: Array.prototype.reduce applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-11.js index 67534e3399..f9bd16f175 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-11 description: Array.prototype.reduce applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-12.js index ade27ade62..72404fe4fd 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-12 description: Array.prototype.reduce applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-13.js index 3bdd3e1723..46f75ed791 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-13 description: Array.prototype.reduce applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-14.js index 424e1e69f2..abc459c71a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-14 description: Array.prototype.reduce applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-15.js index a5387f2780..d679905b3c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-15 description: Array.prototype.reduce applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-2.js index b070b9ea19..5a823df679 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-2 description: Array.prototype.reduce applied to null ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-3.js index 833762b496..bcf8627ec4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-3 description: Array.prototype.reduce applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-4.js index c08a750771..dc1eecf396 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-4 description: Array.prototype.reduce applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-5.js index 8314bea9bd..607a4759fe 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-5 description: Array.prototype.reduce applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-6.js index 4ab488dc4c..9dc185fd22 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-6 description: Array.prototype.reduce applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-7.js index 6869f90c09..38ff9b4448 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-7 description: Array.prototype.reduce applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-8.js index 96635cee29..ba2b27791b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-8 description: Array.prototype.reduce applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-9.js index b2bd796bb7..9f48a4331e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-1-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-1-9 description: Array.prototype.reduce applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-1.js index 777c4d3f8a..8a5ffba858 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-1 description: > Array.prototype.reduce doesn't mutate the Array on which it is called on diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-2.js index a01a48c92c..4a8d19b519 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-2 description: > Array.prototype.reduce reduces the array in ascending order of indices diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-3.js index 5174a6300f..14b13743e2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-3 description: Array.prototype.reduce - subclassed array of length 1 ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-4.js index e84e53a710..3a4597d647 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-4 description: Array.prototype.reduce - subclassed array with length more than 1 ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-5.js index 82c843ecd4..f1fac42cf0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-5 description: > Array.prototype.reduce reduces the array in ascending order of indices(initialvalue present) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-6.js index 35e50b1262..6dc25fd315 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-6 description: > Array.prototype.reduce - subclassed array when initialvalue provided diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-7.js index 1725c367ea..02279af27c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-7 description: > Array.prototype.reduce - subclassed array with length 1 and initialvalue provided diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-8.js index 3f1ffdcb47..ca63e73513 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-10-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-10-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-10-8 description: Array.prototype.reduce doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-1.js index 4e5e8bb973..7348b728ee 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-1 description: > Array.prototype.reduce - 'length' is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-10.js index 18e09d6d32..cbe7ed04d7 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-10 description: > Array.prototype.reduce applied to Array-like object, 'length' is an inherited accessor property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-11.js index 9dd5748b68..5d91745694 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-11 description: > Array.prototype.reduce applied to Array-like object, 'length' is an own accessor property without a get function diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-12.js index da2f2a6ac3..ac6545e19d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-12 description: > Array.prototype.reduce - 'length' is own accessor property without a get function that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-13.js index 7f12502927..0902e5e2f6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-13 description: > Array.prototype.reduce applied to Array-like object that 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-14.js index f21ee41e71..b6705aa9b3 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-14 description: > Array.prototype.reduce applied to the Array-like object that 'length' property doesn't exist diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-17.js index c53ac5820d..e5bbcb0fa2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-17 description: > Array.prototype.reduce applied to the Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-18.js index 43c4f960d1..0b075c15a5 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-18 description: > Array.prototype.reduce applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-19.js index 02eaafd2be..f47702590e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-19 description: > Array.prototype.reduce applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-2.js index 6b63af80a9..efc16d9602 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-2 description: Array.prototype.reduce - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-3.js index ae2642759d..dd00fe0160 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-3 description: > Array.prototype.reduce - 'length' is an own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-4.js index a2666931e9..bc561023e9 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-4 description: > Array.prototype.reduce - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-5.js index 5e826cf741..89ad12f72a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-5 description: > Array.prototype.reduce applied to Array-like object, 'length' is an own data property that overrides an inherited accessor property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-6.js index 9088ded910..d79b3f88dd 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-6 description: > Array.prototype.reduce applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-7.js index 2aea682c72..3e779f8419 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-7 description: > Array.prototype.reduce applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-8.js index 6d95375356..e899c4c9ea 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-8 description: > Array.prototype.reduce applied to Array-like object, 'length' is an own accessor property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-9.js index 34b6ca18d1..da868e10cf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-2-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-2-9 description: > Array.prototype.reduce applied to Array-like object, 'length' is an own accessor property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-1.js index 1cd10992a6..9ebad76c91 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-1 description: Array.prototype.reduce - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-10.js index 982fd8965e..9e7aa491c0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-10 description: > Array.prototype.reduce - value of 'length' is number primitive (value is NaN) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-11.js index 01185212a1..1d5911aaf6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-11 description: > Array.prototype.reduce - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-12.js index c1610fdf10..5dbbb3c3d8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-12 description: > Array.prototype.reduce - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-13.js index 77c594df48..4add0809aa 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-13 description: > Array.prototype.reduce - 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-14.js index 26bf70c04f..0f59f904d9 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-14 description: Array.prototype.reduce - 'length' is a string containing -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-15.js index a467d5ba46..789ba309f0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-15 description: > Array.prototype.reduce - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-16.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-16.js index c1e8c7a11d..4b9f3ecb97 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-16.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-16 description: > Array.prototype.reduce - 'length' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-17.js index 683e3d900f..a1e82ae1c6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-17 description: > Array.prototype.reduce - 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-18.js index 4b797136b2..0ccabba617 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-18 description: > Array.prototype.reduce - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-19.js index 7d168f5e06..ede0d9f2ca 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-19 description: > Array.prototype.reduce - value of 'length' is an Object which has an own toString method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-2.js index 32492611fd..999479be9b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-2 description: > Array.prototype.reduce - value of 'length' is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-20.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-20.js index 32f5200bcd..f48507efbb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-20.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-20 description: > Array.prototype.reduce - value of 'length' is an object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-21.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-21.js index 9470d76796..4870d33593 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-21.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-21 description: > Array.prototype.reduce - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-22.js index b7d4a852c0..aaf88c1252 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-22.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-22 description: > Array.prototype.reduce throws TypeError exception - 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-23.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-23.js index c281ba361e..7b94fca595 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-23.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-23 description: > Array.prototype.reduce uses inherited valueOf method - 'length' is an object with an own toString and inherited valueOf methods diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-24.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-24.js index c3e969f575..5ea00b7a3e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-24.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-24 description: > Array.prototype.reduce - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-25.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-25.js index 5a8f54239c..8696cfacfd 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-25.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-25 description: > Array.prototype.reduce - value of 'length' is a negative non-integer diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-3.js index 0fe83bd714..734d9633bc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-3 description: Array.prototype.reduce - value of 'length' is a number (value is 0) ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-4.js index 864a0c1e52..1ba94bed10 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-4 description: > Array.prototype.reduce - value of 'length' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-5.js index 0a22d02a3e..5327da88ac 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-5 description: > Array.prototype.reduce - value of 'length' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-6.js index fbee22d425..0d2406cf81 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-6 description: > Array.prototype.reduce - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-7.js index b171abfd20..1e86b6e81f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-7 description: > Array.prototype.reduce - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-9.js index 33c8a72d32..e0ef078b7c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-3-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-3-9 description: > Array.prototype.reduce - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-1.js index ffc66baacf..dcc5958dca 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-1 description: Array.prototype.reduce throws TypeError if callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-10.js index 5592d22dc8..5ef981db78 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-10 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-11.js index a9993c2395..2333e74629 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-11 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-12.js index 3911228646..f1e7a8b993 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-12 description: Array.prototype.reduce - 'callbackfn' is a function ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-15.js index 7072a1d2c0..361798e4d4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-15 description: > Array.prototype.reduce - calling with no callbackfn is the same as passing undefined for callbackfn diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-2.js index a510f11e1a..5a362e777b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-2 description: > Array.prototype.reduce throws ReferenceError if callbackfn is unreferenced diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-3.js index c980003a34..ecd37615b2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-3 description: Array.prototype.reduce throws TypeError if callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-4.js index f86249342b..73fcb4f891 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-4 description: Array.prototype.reduce throws TypeError if callbackfn is boolean ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-5.js index 19ea080d09..0d60a9c56d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-5 description: Array.prototype.reduce throws TypeError if callbackfn is number ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-6.js index 10d80e6651..be924dca5f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-6 description: Array.prototype.reduce throws TypeError if callbackfn is string ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-7.js index 5f5bb65167..8c8ac265ad 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-7 description: > Array.prototype.reduce throws TypeError if callbackfn is Object without [[Call]] internal method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-8.js index da9ba950c6..6ae320ac4c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-8 description: > Array.prototype.reduce - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-9.js index b0e48b6282..6e5d2b45a6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-4-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-4-9 description: > Array.prototype.reduce - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-1.js index ca6c540346..37436521fb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-1 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (empty array), no initVal diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-10.js index 2d392481ce..b25e5636a1 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-10 description: > Array.prototype.reduce - if exception occurs, it occurs after any side-effects that might be produced by step 2 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-11.js index 8b63d3e3e1..3ba23bd677 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-11 description: > Array.prototype.reduce - if the exception occurs, it occurs after any side-effects that might be produced by step 3 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-12.js index 8cdeb3b4c8..c2cd53f618 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-12 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-13.js index 3285912c3c..8f55669e2f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-13 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-2.js index ac61503048..8d85a503ba 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-2 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden to null (type conversion)), diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-3.js index 1fb61ac829..047afe281e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-3 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden to false (type conversion)), diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-4.js index a68dd49343..2c4cd6139b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-4 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)), no diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-5.js index 0717a9eddc..d6f8425cbf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-5 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)), no diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-6.js index 4a935d9a75..6f52356c9e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-6 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden with obj with valueOf), no diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-7.js index faede22226..72e6ed302b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-7 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-8.js index ddf3cbf524..9a320c89e6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-8 description: > Array.prototype.reduce throws TypeError if 'length' is 0 (subclassed Array, length overridden with []), no initVal diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-9.js index 8df0ed8c93..9cd95efbbc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-5-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-5-9 description: > Array.prototype.reduce - 'initialValue' is returned if 'len' is 0 and 'initialValue' is present diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-1.js index 785c4e32f9..df697b9e1c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-1 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (empty array) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-10.js index a03752192d..77ae8e5b93 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-10 description: Array.prototype.reduce - 'initialValue' is present ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-11.js index 7c2dd91ff3..b301228666 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-11 description: Array.prototype.reduce - 'initialValue' is not present ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-2.js index 7c227878ce..edabddd149 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-2 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden to diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-3.js index 525f769e3e..c232bbd46b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-3 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden to diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-4.js index fed398c8e1..ebe2d0ac56 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-4 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden to 0 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-5.js index 8634d03a64..21e421265e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-5 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden to diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-6.js index 33c22e6e73..4b59de9ebb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-6 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden with diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-7.js index db7132e8a8..a2fd11745f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-7 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden with diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-8.js index 8ddc5cd6f2..166bede7e7 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-8 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden with diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-9.js index 4f9f86265a..e80557e21e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-7-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-7-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-7-9 description: > Array.prototype.reduce returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden with diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-1.js index af872fd925..9f6480d38c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-1 description: Array.prototype.reduce - no observable effects occur if 'len' is 0 ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-2.js index a3796550a8..30149a433c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-2 description: > Array.prototype.reduce - modifications to length don't change number of iterations in step 9 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-3.js index 03fd27c09d..922a4052b6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-3 description: Array.prototype.reduce - loop is broken once 'kPresent' is true ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-1.js index 15b0dc2a04..a2edde451b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-ii-1 description: > Array.prototype.reduce - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-2.js index 9c51a152a7..22d98dfa3b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-ii-2 description: > Array.prototype.reduce - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-1.js index eff2f84cf7..a25fd95f60 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-1 description: > Array.prototype.reduce - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-10.js index c3e9f4b4b4..77a679e6ca 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-10 description: > Array.prototype.reduce - when element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-11.js index e5c7a7b977..ef136caf40 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-11 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-12.js index 79eba49451..1746259986 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-12 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-13.js index 62d5da4b47..f4dff8c483 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-13 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-14.js index 0b1781550f..62bff007cc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-14 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-15.js index 6e2cc64b9d..0e67e5e3f2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-15 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-16.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-16.js index 2bfc2d804b..baece98a13 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-16.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-16 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-17.js index 735d1c856e..6e31fbd6ef 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-17 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-18.js index 5b2a3b2f78..79e7223540 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-18 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-19.js index 9178b85feb..51f229f59a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-19 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-2.js index f8ca72b6a0..7fd67843ea 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-2 description: > Array.prototype.reduce - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-20.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-20.js index e4793560e2..fae12ebd1e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-20.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-20 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-21.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-21.js index 47a9a843b8..441907cb21 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-21.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-21 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-22.js index dc05e78606..f658e3578e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-22.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-22 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-25.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-25.js index 451955fccd..f5e4a0d05b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-25.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-25 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-26.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-26.js index eef4cdd6ee..ee2ad2bfc6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-26.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-26 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-27.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-27.js index fc4013d2db..aa3c2ebff9 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-27.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-27 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-28.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-28.js index 1c429e4c7b..bc0dfbf726 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-28.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-28 description: > Array.prototype.reduce - applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-29.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-29.js index 0fe7328fee..ad8fc0222d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-29.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-29 description: > Array.prototype.reduce - applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-3.js index 15298bc3ef..ca65f847f8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-3 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-30.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-30.js index 45f396f05c..fc5d144d4b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-30.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-30 description: > Array.prototype.reduce - element changed by getter on current iterations is observed in subsequent iterations on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-31.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-31.js index 70282ce37e..46f667c505 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-31.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-31 description: > Array.prototype.reduce - element changed by getter on current iterations is observed in subsequent iterations on an Array-like diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-32.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-32.js index 50002a64e3..739bc0a090 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-32.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-32 description: > Array.prototype.reduce - exception in getter terminates iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-33.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-33.js index 9f00cb900f..dfa3569062 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-33.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-33 description: > Array.prototype.reduce - exception in getter terminates iteration on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-4.js index 72a46d6c81..df37924ebe 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-4 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-5.js index 17c7e51c65..15a6d8ce6c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-5 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-6.js index 2b0f847da4..98c2a9d38c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-6 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-7.js index 24fa5654ce..2effb83693 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-7 description: > Array.prototype.reduce - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-8.js index 0eed563635..f1eb951a66 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-8 description: > Array.prototype.reduce - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-9.js index d61c61aea2..d1eea17b53 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-b-iii-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-b-iii-1-9 description: > Array.prototype.reduce - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-1.js index bd6232342c..d3d4bd4ee8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-1 description: > Array.prototype.reduce throws TypeError when Array is empty and initialValue is not present diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-2.js index f30f014b99..bc496311cc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-2 description: > Array.prototype.reduce throws TypeError when elements assigned values are deleted by reducing array length and initialValue is diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-3.js index 15d80dfa2a..613f787ed4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-3 description: > Array.prototype.reduce throws TypeError when elements assigned values are deleted and initialValue is not present diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js index db9f7aebab..bb9155336b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-4 description: > Array.prototype.reduce doesn't throw error when array has no own properties but prototype contains a single property diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-5.js index d04354342b..ae3b0ebd4e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-5 description: > Array.prototype.reduce - if exception occurs, it occurs after any side-effects that might be produced by step 2 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-6.js index 687736c2bc..aeac0725ad 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-6 description: > Array.prototype.reduce - if exception occurs, it occurs after any side-effects that might be produced by step 3 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-7.js index 178c34c704..6199c6738a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-7 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-8.js index 64f4b8f793..00365ab581 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-8-c-8 description: > Array.prototype.reduce - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-1.js index 2ac5c2e737..aad3ee5653 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-1 description: > Array.prototype.reduce doesn't consider new elements added to array after it is called diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-10.js index fec5a6b8d9..f4b726e960 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-10 description: > Array.prototype.reduce called with an initial value doesn't consider new elements added to array after it is called diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-2.js index 0db9712104..b3592aa24c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-2 description: > Array.prototype.reduce considers new value of elements in array after it is called diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-3.js index 514951a748..60aadf5852 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-3 description: > Array.prototype.reduce doesn't visit deleted elements in array after the call diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-4.js index 6b9f7ca036..19a4933df8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-4 description: > Array.prototype.reduce doesn't visit deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-5.js index 4fc56efead..8724726461 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-5 description: > Array.prototype.reduce - callbackfn not called for array with one element diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-6.js index 2d05468ef2..322660643d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-6 description: > Array.prototype.reduce visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-7.js index f8c3a4b711..c9c8529635 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-7 description: > Array.prototype.reduce stops calling callbackfn once the array is deleted during the call diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-8.js index 6feccfcb35..8cd610cd4b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-8 description: Array.prototype.reduce - no observable effects occur if 'len' is 0 ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-9.js index 0a6ba82e40..6f5fd194df 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-9 description: > Array.prototype.reduce - modifications to length don't change number of iterations in step 9 diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-1.js index 274f1bb6ee..ae028a72d4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-1 description: > Array.prototype.reduce returns initialvalue when Array is empty and initialValue is present diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-10.js index bf0d29423d..28e60ab0c4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-10 description: > Array.prototype.reduce - deleting property of prototype in step 8 causes deleted index property not to be visited on an Array-like diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-11.js index 4636bd54a2..8fb5cedbaf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-11 description: > Array.prototype.reduce - deleting property of prototype in step 8 causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-12.js index 7605c7ebee..ea7f137191 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-12 description: > Array.prototype.reduce - deleting own property with prototype property in step 8 causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-13.js index 4960d60e65..e7ca33db46 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-13 description: > Array.prototype.reduce - deleting own property with prototype property in step 8 causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-14.js index 0d00a32316..c2816a49ac 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-14 description: > Array.prototype.reduce - decreasing length of array in step 8 causes deleted index property not to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-15.js index 4d42c2ca78..9781b1dd36 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-15 description: > Array.prototype.reduce - decreasing length of array with prototype property in step 8 causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-16.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-16.js index 047fc4db91..9e8c27407a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-16.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-16 description: > Array.prototype.reduce - decreasing length of array in step 8 does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-17.js index 2364819b98..f3761c8ebf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-17 description: > Array.prototype.reduce - properties added into own object are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-18.js index 94cdebfc31..a6b671ae90 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-18 description: > Array.prototype.reduce - properties added into own object are visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-19.js index 719447c92e..85ca6947a1 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-19 description: > Array.prototype.reduce - properties added to prototype are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-2.js index eabeeb5eb1..3a2b4eb9fb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-2 description: > Array.prototype.reduce - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-20.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-20.js index 935e8ca310..1de3e50169 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-20.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-20 description: > Array.prototype.reduce - properties can be added to prototype are visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-21.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-21.js index 200ac1c68e..c18d8f61a6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-21.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-21 description: > Array.prototype.reduce - deleting own property causes deleted index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-22.js index 64402e07c9..1467814c71 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-22.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-22 description: > Array.prototype.reduce - deleting own property causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-23.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-23.js index 236167f7ed..357233358a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-23.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-23 description: > Array.prototype.reduce - deleting property of prototype causes deleted index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-24.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-24.js index 7a2cbcd165..244bc00fb5 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-24.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-24 description: > Array.prototype.reduce - deleting property of prototype causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-25.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-25.js index 311f9f21f0..cead97a594 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-25.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-25 description: > Array.prototype.reduce - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-26.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-26.js index 8a570c25ee..06d8ce9c9a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-26.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-26 description: > Array.prototype.reduce - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-27.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-27.js index bfbf66fbf4..3b545a980f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-27.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-27 description: > Array.prototype.reduce - decreasing length of array causes deleted index property not to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-28.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-28.js index ba16dafa85..b6c6ffeccc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-28.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-28 description: > Array.prototype.reduce - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-29.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-29.js index 1c872c518c..8d8c2a9c6d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-29.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-29 description: > Array.prototype.reduce - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-3.js index 2f72b891a4..daf491a9f3 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-3 description: > Array.prototype.reduce - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-4.js index 208fd04f22..309277498d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-4 description: > Array.prototype.reduce - properties added into own object in step 8 are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-5.js index 872321367d..b583bf1039 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-5 description: > Array.prototype.reduce - properties added into own object in step 8 are visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-6.js index 6002cbd912..494aeb5bf8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-6 description: > Array.prototype.reduce - properties added to prototype in step 8 are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-7.js index b41a6c1378..3e7793172a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-7 description: > Array.prototype.reduce - properties added to prototype in step 8 are visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-8.js index 4386fa4a48..1e680391db 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-8 description: > Array.prototype.reduce - deleting own property in step 8 causes deleted index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-9.js index 2f9739a3d1..f2a61bbdf0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-b-9 description: > Array.prototype.reduce - deleting own property in step 8 causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-1.js index 82bb1fd5fd..8fc8a6cbfd 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-1 description: > Array.prototype.reduce - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-1.js index 83910eb355..3148e40414 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-1 description: > Array.prototype.reduce - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-10.js index a297b03616..2aeedb00f6 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-10 description: > Array.prototype.reduce - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-11.js index b5cc2ad9b2..150f6b56df 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-11 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-12.js index de4c3f77b5..9558165ff0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-12 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-13.js index c29ed6061a..d3d0fbb2d7 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-13 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-14.js index 5d2ea3e9cc..e367f7b354 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-14 description: > Array.prototype.reduce - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-15.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-15.js index fb6f4b4307..f4faf8f1f5 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-15.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-15 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-16.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-16.js index ea5b70bf7e..94c4b0ba70 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-16.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-16 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-17.js index 2612938851..0231b14bf1 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-17 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-18.js index 8b1b27917f..584ca43a5e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-18 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-19.js index d385edd583..89754c460f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-19 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-2.js index bec49675d6..0ad4fcc5c2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-2 description: > Array.prototype.reduce - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-20.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-20.js index 96d6089f47..6d1c35aa41 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-20.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-20 description: > Array.prototype.reduce - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-21.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-21.js index 4994164fdd..fc137eeca8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-21.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-21 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js index b906e19e77..aa43433cf3 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-22 description: > Array.prototype.reduce - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-25.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-25.js index 08713388f0..f03d04b6a3 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-25.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-25 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-26.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-26.js index d8ce4350b2..5834c0b4b9 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-26.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-26 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-27.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-27.js index 40b63f9877..0b56c863b8 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-27.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-27 description: > Array.prototype.reduce - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-28.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-28.js index 92981a4a9f..68c25bff2b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-28.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-28 description: > Array.prototype.reduce - applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-29.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-29.js index 270742aa9c..ea7175fb0d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-29.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-29 description: > Array.prototype.reduce - applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-3.js index 0a23d5c010..1f1339abcd 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-3 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-30.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-30.js index 46dfa9febf..cb918db258 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-30.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-30 description: > Array.prototype.reduce - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-31.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-31.js index db862cce17..f2b000145e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-31.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-31 description: > Array.prototype.reduce - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-32.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-32.js index 787d0261c9..de39979630 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-32.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-32 description: > Array.prototype.reduce - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-33.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-33.js index eb596116ae..6df90da35e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-33.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-33 description: > Array.prototype.reduce - unnhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-4.js index 0f26cabfef..653ea7b921 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-4 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-5.js index 44cb554c70..34ef4bc72b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-5 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-6.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-6.js index d3aca565c0..b42db29dc0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-6.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-6 description: > Array.prototype.reduce - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-7.js index 49844b47d8..fd4b2c8c46 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-7 description: > Array.prototype.reduce - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-8.js index 08a408abd6..bca23bc12e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-8 description: > Array.prototype.reduce - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-9.js index 5188213e3e..549dd55075 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-i-9 description: > Array.prototype.reduce - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-1.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-1.js index af3c3074e9..9d5fa51bcf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-1.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-1 description: > Array.prototype.reduce - callbackfn called with correct parameters (initialvalue not passed) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-10.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-10.js index 9a9a5567d5..95b92f480f 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-10.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-10 description: > Array.prototype.reduce - callbackfn is called with 1 formal parameter diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-11.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-11.js index 503028a433..b4bf3cb520 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-11.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-11 description: > Array.prototype.reduce - callbackfn is called with 2 formal parameter diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-12.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-12.js index 58b12b3d20..366181fd1d 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-12.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-12 description: > Array.prototype.reduce - callbackfn is called with 3 formal parameter diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-13.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-13.js index 170366208a..cdb5266ffe 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-13.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-13 description: > Array.prototype.reduce - callbackfn is called with 4 formal parameter diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-14.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-14.js index 12cf2c4288..e38556b9b5 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-14.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-14 description: Array.prototype.reduce - callbackfn that uses arguments ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-16.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-16.js index 976b1a2696..aaf07c9017 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-16.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-16 description: Array.prototype.reduce - non-indexed properties are not called ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-17.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-17.js index 1179c4e145..a5bd06d3fc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-17.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-17 description: > Array.prototype.reduce - 'accumulator' used for current iteration is the result of previous iteration on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-18.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-18.js index acb90c345a..d3c7b5519a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-18.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-18 description: > Array.prototype.reduce - value of 'accumulator' used for first iteration is the value of 'initialValue' when it is present on an diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-19.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-19.js index 9f6c78aef4..2f9866272a 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-19.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-19 description: > Array.prototype.reduce - value of 'accumulator' used for first iteration is the value of least index property which is not diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-2.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-2.js index 024016564a..ea7a28f78e 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-2.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-2 description: > Array.prototype.reduce - callbackfn called with correct parameters (initialvalue passed) diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-20.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-20.js index 2e75523561..b9e9ffe78c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-20.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-20 description: Array.prototype.reduce - undefined can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-21.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-21.js index 1864d08fac..4cb1be67db 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-21.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-21 description: Array.prototype.reduce - null can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-22.js index 272db1b967..cd843ec056 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-22.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-22 description: > Array.prototype.reduce - boolean primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-23.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-23.js index 41fbfeb168..44ba1586b4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-23.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-23 description: > Array.prototype.reduce - number primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-24.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-24.js index 64fbb4eb37..2f1b4e1ecc 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-24.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-24 description: > Array.prototype.reduce - string primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-25.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-25.js index 7a20725f1f..ebaa209e36 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-25.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-25 description: Array.prototype.reduce - Function object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-26.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-26.js index 44cd75abd6..62966db2b4 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-26.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-26 description: Array.prototype.reduce - Array object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-27.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-27.js index decc22588b..693cd01cb2 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-27.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-27 description: Array.prototype.reduce - String object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-28.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-28.js index 2eca0b849d..3e85014143 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-28.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-28 description: Array.prototype.reduce - Boolean object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-29.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-29.js index 03ed7c189f..c950823007 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-29.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-29 description: Array.prototype.reduce - Number object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js index dfd7391271..67e7647f28 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-3 description: Array.prototype.reduce - callbackfn takes 4 arguments ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-30.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-30.js index 2cc426a8d2..5588f80ce7 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-30.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-30 description: Array.prototype.reduce - the Math object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-31.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-31.js index 4bf720831f..f8759271ea 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-31.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-31 description: Array.prototype.reduce - Date object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-32.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-32.js index de51b59f3e..368ac19c1b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-32.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-32 description: Array.prototype.reduce - RegExp object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-33.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-33.js index b5cdc3cc86..2de936e976 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-33.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-33 description: Array.prototype.reduce - the JSON can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-34.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-34.js index 9df298c155..46ce80cf3c 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-34.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-34.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-34 description: Array.prototype.reduce - Error object can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-35.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-35.js index 8d01e4e831..56a4bb7deb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-35.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-35.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-35 description: > Array.prototype.reduce - the Arguments object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-37.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-37.js index bb97f5f54b..232500e3fb 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-37.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-37.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-37 description: > Array.prototype.reduce - the global object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4-s.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4-s.js index 89872b1279..f0e7434d5b 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4-s.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-4-s description: > Array.prototype.reduce - undefined passed as thisValue to strict callbackfn diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4.js index f0982335e1..32aadb5204 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-4 description: > Array.prototype.reduce - k values are passed in acending numeric order on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-5.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-5.js index 2a7ad3a6a8..e15d8a86d7 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-5.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-5 description: > Array.prototype.reduce - k values are accessed during each iteration and not prior to starting the loop on an Array diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-7.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-7.js index 31c3a8c588..91fc8e64c0 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-7.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-7 description: > Array.prototype.reduce - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-8.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-8.js index e3ed219e68..28e52647cf 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-8.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-8 description: > Array.prototype.reduce - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-9.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-9.js index c9d0ae895b..618bfd7997 100644 --- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-9.js +++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es5id: 15.4.4.21-9-c-ii-9 description: > Array.prototype.reduce - callbackfn is called with 0 formal parameter diff --git a/test/built-ins/Array/prototype/reduce/name.js b/test/built-ins/Array/prototype/reduce/name.js index 9cfeb10a0b..978fbc950a 100644 --- a/test/built-ins/Array/prototype/reduce/name.js +++ b/test/built-ins/Array/prototype/reduce/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduce -es6id: 22.1.3.18 description: > Array.prototype.reduce.name is "reduce". info: | diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-1.js index 5a64f1472e..800f7ae706 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-1 description: Array.prototype.reduceRight applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-10.js index fb0a1f9f89..73850aa53e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-10 description: Array.prototype.reduceRight applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-11.js index 610b412912..a2fe26d5e5 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-11 description: Array.prototype.reduceRight applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-12.js index efc9fa2e3a..c5b8d286a8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-12 description: Array.prototype.reduceRight applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-13.js index 822d57425d..6a9ef96df2 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-13 description: Array.prototype.reduceRight applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-14.js index 4d8557c59b..bd940dad29 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-14 description: Array.prototype.reduceRight applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-15.js index a2bb8a9ffc..901db6e470 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-15 description: Array.prototype.reduceRight applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-2.js index cf08c68a5a..5a20f20cba 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-2 description: Array.prototype.reduceRight applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-3.js index 6fca6c3040..387d4c5757 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-3 description: Array.prototype.reduceRight applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-4.js index d782446858..4439dc6ea5 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-4 description: Array.prototype.reduceRight applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-5.js index c83b156f04..0214a6c8d4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-5 description: Array.prototype.reduceRight applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-6.js index 9d1c2792a3..7bfc8aa638 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-6 description: Array.prototype.reduceRight applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-7.js index 7c3dabefe4..af5dd9ec20 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-7 description: Array.prototype.reduceRight applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-8.js index 9f6ee35dbc..1cea7e0c86 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-8 description: Array.prototype.reduceRight applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-9.js index 42e6c8ca6b..f5d4885f17 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-1-9 description: Array.prototype.reduceRight applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-1.js index eaaca4897c..0921ce970b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-1 description: > Array.prototype.reduceRight doesn't mutate the Array on which it is called on diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-2.js index cffd5e08e1..d059e86b17 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-2 description: > Array.prototype.reduceRight reduces array in descending order of indices diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-3.js index de4a59b0c2..e0317593bc 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-3 description: Array.prototype.reduceRight - subclassed array with length 1 ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-4.js index 7726d9fde8..c44bd6312c 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-4 description: > Array.prototype.reduceRight - subclassed array with length more than 1 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-5.js index c5c29eb025..dbd94308a5 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-5 description: > Array.prototype.reduceRight reduces array in descending order of indices(initialvalue present) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-6.js index 37cb4705e4..92a05c9726 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-6 description: > Array.prototype.reduceRight - subclassed array when initialvalue provided diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-7.js index 813179ec75..1cbd2a0a97 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-7 description: > Array.prototype.reduceRight - subclassed array when length to 1 and initialvalue provided diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-8.js index a9aa697407..ee5a1e56b8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-10-8 description: Array.prototype.reduceRight doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-1.js index 5a7a0af527..add64f6b3d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-1 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own data property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-10.js index 035cc1c822..ddc6d57340 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-10 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an inherited accessor property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-11.js index ffd66953e4..c4ffb6d735 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-11 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own accessor property without a get function diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-12.js index b685810f9a..18b307f216 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-12 description: > Array.prototype.reduceRight - 'length' is own accessor property without a get function that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-13.js index 7cdaf568c6..20057ba69b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-13 description: > Array.prototype.reduceRight applied to the Array-like object that 'length' is inherited accessor property without a get function diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-14.js index 75d312923b..99d5673174 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-14 description: > Array.prototype.reduceRight applied to the Array-like object that 'length' property doesn't exist diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-17.js index b888b562e2..1530f6fbbd 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-17 description: > Array.prototype.reduceRight applied to the Arguments object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-18.js index bc036bf488..4a961c990a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-18 description: > Array.prototype.reduceRight applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-19.js index f76fdf2239..18888a97ac 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-19 description: > Array.prototype.reduceRight applied to Function object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-2.js index b2b8335e1c..0d47420660 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-2 description: > Array.prototype.reduceRight - 'length' is own data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-3.js index ef1d83a5d7..142980776e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-3 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own data property that overrides an inherited data property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-4.js index 4335394fa0..d77f909745 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-4 description: > Array.prototype.reduceRight - 'length' is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-5.js index 50e35c3b48..3bb50a20e0 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-5 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own data property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-6.js index d41b9630ae..bd99ebc988 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-6 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an inherited data property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-7.js index 836ed95e1f..461fec3480 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-7 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own accessor property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-8.js index f867632c02..2ffc801ac5 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-8 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own accessor property that overrides an inherited data diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-9.js index d47f6150fb..2b766879e1 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-2-9 description: > Array.prototype.reduceRight applied to Array-like object, 'length' is an own accessor property that overrides an inherited accessor diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-1.js index 7ce837aeb6..1807d3ba10 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-1 description: Array.prototype.reduceRight - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-10.js index 938371d986..45b3819a01 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-10 description: > Array.prototype.reduceRight - value of 'length' is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-11.js index 63f6e57121..c7b7f1ef8e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-11 description: > Array.prototype.reduceRight - value of 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-12.js index 3a209ff400..8cab8c2e86 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-12 description: > Array.prototype.reduceRight - value of 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-13.js index 6fb47ffde7..45c1f4e07b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-13 description: > Array.prototype.reduceRight - value of 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-14.js index 8fc2ef112a..fd0af29819 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-14 description: > Array.prototype.reduceRight - value of 'length' is a string containing -Infinity diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-15.js index dc7937f776..fcdfcc6082 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-15 description: > Array.prototype.reduceRight - value of 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-16.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-16.js index ac8deb3c90..a39acdc837 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-16.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-16 description: > Array.prototype.reduceRight - value of 'length' is a string containing a hex number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-17.js index 5da8f8d4fa..d640905ad4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-17 description: > Array.prototype.reduceRight - value of 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-18.js index bd2586f989..406dafdd54 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-18 description: > Array.prototype.reduceRight - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-19.js index 1e2f2e395b..31541cbb74 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-19 description: > Array.prototype.reduceRight - value of 'length' is an object which has an own toString method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-2.js index 77c0abd1b4..40e65633b6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-2 description: > Array.prototype.reduceRight applied to an Array-like object, 'length' is 0 (length overridden to false(type conversion)) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-20.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-20.js index 5b8cf1cbd6..4ae9e6fa38 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-20.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-20 description: > Array.prototype.reduceRight - value of 'length' is an Object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-21.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-21.js index 31024633a6..13971a2b51 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-21.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-21 description: > Array.prototype.reduceRight - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-22.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-22.js index 488f1808f2..55e26600c6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-22.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-22 description: > Array.prototype.reduceRight throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-23.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-23.js index f9f5fa105d..49bf54c30a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-23.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-23 description: > Array.prototype.reduceRight uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-24.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-24.js index db317c993b..2e4e657a3a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-24.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-24 description: > Array.prototype.reduceRight - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-25.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-25.js index eb311aa6fd..cf8ca49fb0 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-25.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-25 description: > Array.prototype.reduceRight - value of 'length' is a negative non-integer diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-3.js index b651dc45ec..d6d30f6bc6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-3 description: > Array.prototype.reduceRight - value of 'length' is a number (value is 0) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-4.js index 9b7f07bd48..8f7dacfa7e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-4 description: > Array.prototype.reduceRight - value of 'length' is a number (value is +0) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-5.js index 9a8919e54f..6cb34abfa8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-5 description: > Array.prototype.reduceRight - value of 'length' is a number (value is -0) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-6.js index 69ed877c29..767f20f664 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-6 description: > Array.prototype.reduceRight - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-7.js index a8da6c075f..98c8ba4247 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-7 description: > Array.prototype.reduceRight - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-9.js index 7ecc600aab..3707039882 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-3-9 description: > Array.prototype.reduceRight - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-1.js index 04017e990a..2ad6241333 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-1 description: > Array.prototype.reduceRight throws TypeError if callbackfn is undefined diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-10.js index b6a599910a..da94626efe 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-10 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-11.js index 34885bde34..74acc32ee0 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-11 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-12.js index f4e76497f7..3f286a6933 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-12 description: Array.prototype.reduceRight - 'callbackfn' is a function ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-15.js index cdef077c69..c4fbd3c95b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-15 description: > Array.prototype.reduceRight - calling with no callbackfn is the same as passing undefined for callbackfn diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-2.js index 40ea5d53ca..aa3b45fb83 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-2 description: > Array.prototype.reduceRight throws ReferenceError if callbackfn is unreferenced diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-3.js index 76b084c2ba..5f134bc565 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-3 description: Array.prototype.reduceRight throws TypeError if callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-4.js index 9f0043f12a..7c3cb56bec 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-4 description: > Array.prototype.reduceRight throws TypeError if callbackfn is boolean diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-5.js index e22ed21835..0d1de2568f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-5 description: > Array.prototype.reduceRight throws TypeError if callbackfn is number diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-6.js index e6437a1b33..bbd27d4f55 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-6 description: > Array.prototype.reduceRight throws TypeError if callbackfn is string diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-7.js index c6104250da..dc16a1eb79 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-7 description: > Array.prototype.reduceRight throws TypeError if callbackfn is Object without [[Call]] internal method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-8.js index d76239982f..cf1e9989ce 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-8 description: > Array.prototype.reduceRight - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-9.js index 0da73eb44d..7a59a6c46b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-4-9 description: > Array.prototype.reduceRight - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-1.js index 562903de42..29e29fbb81 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-1 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (empty array), no initVal diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-10.js index f70a3062d0..e72ab8ef70 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-10 description: > Array.prototype.reduceRight - side-effects produced by step 2 when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-11.js index a0d148aacf..7165975e90 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-11 description: > Array.prototype.reduceRight - side-effects produced by step 3 when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-12.js index 5a8f490967..f8228f4894 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-12 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-13.js index f3a658dbdf..2cd8f6af81 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-13 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-2.js index e2ea6c0a1d..b771e817cc 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-2 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden to null (type conversion)), diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-3.js index 1256ed6687..f320920ad6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-3 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden to false (type conversion)), diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-4.js index ec024658ff..f3d3e9aa23 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-4 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)), no diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-5.js index ddf90e92e9..4036bfe34c 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-5 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)), no diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-6.js index 76d34aed03..011a8fc34a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-6 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden with obj with valueOf), no diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-7.js index bd392b8003..d048b90bc8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-7 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-8.js index 93ce902f0b..3d9e837880 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-8 description: > Array.prototype.reduceRight throws TypeError if 'length' is 0 (subclassed Array, length overridden with []), no initVal diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-9.js index 8c9053cdb4..0426c55604 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-5-9 description: > Array.prototype.reduceRight - 'initialValue' is returned if 'len' is 0 and 'initialValue' is present diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-1.js index 76cec3316e..6fc1897ac3 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-1 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (empty array) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-10.js index c50c734da4..a250951617 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-10 description: Array.prototype.reduceRight - 'initialValue' is present ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-11.js index 466105ad62..d25367086a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-11 description: Array.prototype.reduceRight - 'initialValue' is not present ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-2.js index 226fe2e53b..d35f7e211c 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-2 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-3.js index 07b39a3cce..77155e8815 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-3 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-4.js index 6006a08c35..542e5b63ca 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-4 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-5.js index e91ba16276..f62f4ef0c9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-5 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-6.js index 5fda998754..8361679a7e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-6 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-7.js index 80819a2b4c..28b7cde639 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-7 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-8.js index d2db08ed90..d5e2dd8fef 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-8 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-9.js index 9903f299bf..7bca8d4c12 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-7-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-7-9 description: > Array.prototype.reduceRight returns initialValue if 'length' is 0 and initialValue is present (subclassed Array, length overridden diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-1.js index de85b84e2c..93083129da 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-1 description: > Array.prototype.reduceRight - no observable effects occur if 'len' is 0 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-2.js index 96e4d9109a..100ba29ed4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-2 description: > Array.prototype.reduceRight - modifications to length don't change number of iterations in step 9 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-3.js index 0c9292f976..3e2cfd4483 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-3 description: > Array.prototype.reduceRight - while loop is breaken once 'kPresent' is true diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-1.js index cbd57020ed..71aefca194 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-ii-1 description: > Array.prototype.reduceRight - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-2.js index 8da273e0c2..25f5074c2a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-ii-2 description: > Array.prototype.reduceRight - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-1.js index 3edc447853..edf7e6cfae 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-1 description: > Array.prototype.reduceRight - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-10.js index d76cbfc026..8fd555a555 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-10 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-11.js index 98aea64ef5..9c5947d063 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-11 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-12.js index d322bc64d9..2eaaf168d4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-12 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-13.js index f2e27dc4ed..cc65c4d973 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-13 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-14.js index 74613a0782..11e4bb6ff2 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-14 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-15.js index 4a484444e3..6299906d60 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-15 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-16.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-16.js index 8d473225be..0ee9daeb2b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-16.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-16 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-17.js index 00cb060697..c5fded40c6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-17 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-18.js index 4be07578a8..1ca9304104 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-18 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-19.js index 65b0ec395f..80e95e737b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-19 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-2.js index 6b68c4259f..b805d4e7c6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-2 description: > Array.prototype.reduceRight - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-20.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-20.js index f42f77de41..c016cd7546 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-20.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-20 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-21.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-21.js index 234438eb9e..dfaf9b1b05 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-21.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-21 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-22.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-22.js index 8014170040..885b81e98f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-22.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-22 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-25.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-25.js index a00761e4bc..e2be397735 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-25.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-25 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-26.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-26.js index 5024b8159f..829607bae9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-26.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-26 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-27.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-27.js index 4b716884f9..551cff19d9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-27.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-27 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-28.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-28.js index 296ac59cd4..028a82bbf6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-28.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-28 description: > Array.prototype.reduceRight applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-29.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-29.js index e7c88ee8fc..d0cce933b2 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-29.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-29 description: > Array.prototype.reduceRight applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-3.js index 5dae8cadef..ac1deeca2f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-3 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-30.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-30.js index dd07c30e29..35eba962a4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-30.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-30 description: > Array.prototype.reduceRight - element changed by getter on current iteration is observed in subsequent iterations on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-31.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-31.js index adc024dca6..25b56d29ab 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-31.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-31 description: > Array.prototype.reduceRight - element changed by getter on current iteration is observed subsequetly on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-32.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-32.js index e4056e11fc..c9368e5969 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-32.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-32 description: > Array.prototype.reduceRight - Exception in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-33.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-33.js index b770c5cccd..5fa9730a75 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-33.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-33 description: > Array.prototype.reduceRight - Exception in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-4.js index 9363a9c3ba..0470ed1964 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-4 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-5.js index 1eda02b462..ab4f2c4f2e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-5 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-6.js index 6f8f1eec3c..dc198a4ff7 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-6 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-7.js index 55a3d6dbda..b8bc7bef1e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-7 description: > Array.prototype.reduceRight - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-8.js index d7174183c7..b3f6c38750 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-8 description: > Array.prototype.reduceRight - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-9.js index 648e9485b5..272ae5b005 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-b-iii-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-b-iii-1-9 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-1.js index 8c59328e35..d933d9a366 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-1 description: > Array.prototype.reduceRight throws TypeError when Array is empty and initialValue is not present diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-2.js index 3153f84f56..7fd39f15b7 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-2 description: > Array.prototype.reduceRight throws TypeError when elements assigned values are deleted by reducign array length and diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-3.js index 06d5460c7f..836fb65745 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-3 description: > Array.prototype.reduceRight throws TypeError when elements assigned values are deleted and initialValue is not present diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-4.js index 4dc2980963..c14a73ed5d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-4 description: > Array.prototype.reduceRight doesn't throw error when array has no own properties but prototype contains a single property diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-5.js index 224ff36c30..1d9df89ed9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-5 description: > Array.prototype.reduceRight - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-6.js index 3dab92c10b..6198e08571 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-6 description: > Array.prototype.reduceRight - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-7.js index fade921f98..43aaf3c424 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-7 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-8.js index d0e875976a..2b6b08eb65 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-8-c-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-8-c-8 description: > Array.prototype.reduceRight - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-1.js index ef9f267914..0cb261afdb 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-1 description: > Array.prototype.reduceRight doesn't consider new elements which index is larger than array original length added to array after it diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-2.js index 4fa783dfe0..1be46f2e2f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-2 description: > Array.prototype.reduceRight considers new value of elements in array after it is called diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-3.js index 0455ef32ac..10b066bc09 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-3 description: > Array.prototype.reduceRight doesn't consider unvisited deleted elements in array after the call diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-4.js index d3fa9884c3..64cef29f57 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-4 description: > Array.prototype.reduceRight doesn't consider unvisited deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-5.js index a11242c5d0..bf848aa03e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-5 description: > Array.prototype.reduceRight - callbackfn not called for array with one element diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-6.js index 24f6586901..cdb15b2444 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-6 description: > Array.prototype.reduceRight visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-7.js index b76b74b651..f80625148f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-7 description: > Array.prototype.reduceRight not affect call when the array is deleted during the call diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-8.js index a2ef4d7fec..22fd673682 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-8 description: > Array.prototype.reduceRight - no observable effects occur if 'len' is 0 diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js index ac47f378af..93b12c0080 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-9 description: > Array.prototype.reduceRight - modifications to length will change number of iterations diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-1.js index b7336d05e7..8378f9311a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-1 description: > Array.prototype.reduceRight returns initialvalue when Array is empty and initialValue is not present diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-10.js index 1dd6fb9fe7..ba3730148d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-10 description: > Array.prototype.reduceRight - deleting property of prototype in step 8 causes deleted index property not to be visited on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js index e364fbbb78..1612359e69 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-11 description: > Array.prototype.reduceRight - deleting property of prototype in step 8 causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-12.js index a6aed7624d..24e40e0d98 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-12 description: > Array.prototype.reduceRight - deleting own property with prototype property in step 8 causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-13.js index 470c9420ae..831a8782a9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-13 description: > Array.prototype.reduceRight - deleting own property with prototype property in step 8 causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-14.js index 8307a9768d..9497c356c6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-14 description: > Array.prototype.reduceRight - decreasing length of array in step 8 causes deleted index property not to be visited diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-15.js index 97695a950d..b6916d8ff4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-15 description: > Array.prototype.reduceRight - decreasing length of array with prototype property in step 8 causes prototype index property to be diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-16.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-16.js index 71def64c72..f5adf95056 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-16.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-16 description: > Array.prototype.reduceRight - decreasing length of array in step 8 does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-17.js index d21d758ac4..5bb2e5cf1d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-17 description: > Array.prototype.reduceRight - properties added into own object are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-18.js index 89ed61d4e2..e38aa7aed6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-18 description: > Array.prototype.reduceRight - properties added into own object are visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-19.js index e31e3f370b..5257655e5f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-19 description: > Array.prototype.reduceRight - properties added to prototype are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-2.js index 11d7140d9c..69705119bc 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-2 description: > Array.prototype.reduceRight - added properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-20.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-20.js index 47586d76f1..2e18b88e85 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-20.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-20 description: > Array.prototype.reduceRight - properties added to prototype can be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-21.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-21.js index 13f3eeaa68..d5ee587613 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-21.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-21 description: > Array.prototype.reduceRight - deleting own property causes deleted index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-22.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-22.js index 8c57a1bd23..7b0d19831e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-22.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-22 description: > Array.prototype.reduceRight - deleting own property causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-23.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-23.js index 52046431c8..c87d90239d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-23.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-23 description: > Array.prototype.reduceRight - deleting property of prototype causes deleted index property not to be visited on an Array-like diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-24.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-24.js index 9248519f97..23ec213b58 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-24.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-24 description: > Array.prototype.reduceRight - deleting property of prototype causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-25.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-25.js index bbfac73480..3db726c1fa 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-25.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-25 description: > Array.prototype.reduceRight - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js index 6b7362927e..19fa3dd2c4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-26 description: > Array.prototype.reduceRight - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-27.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-27.js index 01b7f09b9e..ff30996a97 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-27.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-27 description: > Array.prototype.reduceRight - decreasing length of array causes deleted index property not to be visited diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js index a039a64b7a..c9a21a6730 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-28 description: > Array.prototype.reduceRight - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-29.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-29.js index b5cd3bd281..f600a99291 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-29.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-29 description: > Array.prototype.reduceRight - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-3.js index c9bf72fcb5..8de60cd6c2 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-3 description: > Array.prototype.reduceRight - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-4.js index de1e7e50eb..b962be0f0a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-4 description: > Array.prototype.reduceRight - properties added into own object in step 8 can be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-5.js index be881241bc..dd8f20c762 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-5 description: > Array.prototype.reduceRight - properties added into own object in step 8 can be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-6.js index 4c4616663d..0eaad86ac6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-6 description: > Array.prototype.reduceRight - properties added to prototype in step 8 visited on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-7.js index 1eea9497cb..b95b029159 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-7 description: > Array.prototype.reduceRight - properties added to prototype in step 8 visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-8.js index f71e3926ee..191882af58 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-8 description: > Array.prototype.reduceRight - deleting own property in step 8 causes deleted index property not to be visited on an Array-like diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-9.js index 215cab2ef5..2aacbb5d4f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-b-9 description: > Array.prototype.reduceRight - deleting own property in step 8 causes deleted index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-1.js index 825a40814b..c836aba0d0 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-1 description: > Array.prototype.reduceRight - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-1.js index 351f363ff0..5609105b87 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-1 description: > Array.prototype.reduceRight - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-10.js index 2c3a2f1e71..270c39bf64 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-10 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-11.js index 8d72dd51d5..6e21266086 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-11 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-12.js index 61fb0309ab..7831ad1819 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-12 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-13.js index f66c4bf60c..ca3dd9d88a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-13 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-14.js index 25f63b507d..a5c98d6284 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-14 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property that overrides an inherited accessor property on diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-15.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-15.js index 270f2ed4b8..e26f8db821 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-15.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-15 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-16.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-16.js index 78cdc1a281..6ef12f21ef 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-16.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-16 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-17.js index 7f9c3c0730..ca1e54404f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-17 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-18.js index 21a4bf39dc..d2882b0752 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-18 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-19.js index 82ab638bd0..3bfce287ef 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-19 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-2.js index c7168a1949..00e383bd9b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-2 description: > Array.prototype.reduceRight - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-20.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-20.js index 0f39cd442b..7cb18f847f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-20.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-20 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property without a get function that overrides an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-21.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-21.js index f5dda1c866..49f0b784c3 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-21.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-21 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-22.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-22.js index 365b543a52..ef12c44b3d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-22.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-22 description: > Array.prototype.reduceRight - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-25.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-25.js index 9c177f936a..e1b4dcb02e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-25.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-25 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-26.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-26.js index 79984ddfe3..c8296f3079 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-26.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-26 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-27.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-27.js index 080ad10a21..81b972e2f0 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-27.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-27 description: > Array.prototype.reduceRight - This object is the Arguments object which implements its own property get method (number of arguments diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-28.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-28.js index 388685e913..5ae2426469 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-28.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-28 description: > Array.prototype.reduceRight applied to String object, which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-29.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-29.js index 2cc8148fda..e77ea1a939 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-29.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-29 description: > Array.prototype.reduceRight applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-3.js index 98c28ad1e0..e67ab928e6 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-3 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-30.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-30.js index 234bf191a1..41ec263dd8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-30.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-30 description: > Array.prototype.reduceRight - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-31.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-31.js index c560a641e9..bd30363b3c 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-31.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-31 description: > Array.prototype.reduceRight - element changed by getter on previous iterations is observed on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-32.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-32.js index 57da7683af..468978a963 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-32.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-32 description: > Array.prototype.reduceRight - unnhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-33.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-33.js index 257325e497..ef33908441 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-33.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-33 description: > Array.prototype.reduceRight - unnhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-4.js index a5145b80d7..83ab857f34 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-4 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-5.js index 6feb43a1be..5de685963f 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-5 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-6.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-6.js index 5b47467c31..0b4b0346f8 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-6.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-6 description: > Array.prototype.reduceRight - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-7.js index e5a8ebfc36..49bc033f07 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-7 description: > Array.prototype.reduceRight - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-8.js index ad73acacbe..af157054e3 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-8 description: > Array.prototype.reduceRight - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-9.js index d512dd5daf..2299b84a10 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-i-9 description: > Array.prototype.reduceRight - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-1.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-1.js index 50b5043be2..16a9b45ada 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-1.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-1 description: > Array.prototype.reduceRight - callbackfn called with correct parameters (initialvalue not passed) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-10.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-10.js index 1953c9a379..a9809591bd 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-10.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-10 description: > Array.prototype.reduceRight - callbackfn is called with 1 formal parameter diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-11.js index d6e3cfd1d7..de8b243897 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-11.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-11 description: > Array.prototype.reduceRight - callbackfn is called with 2 formal parameter diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-12.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-12.js index 5d7a7b572a..42e2fc8fff 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-12.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-12 description: > Array.prototype.reduceRight - callbackfn is called with 3 formal parameter diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-13.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-13.js index 6fc2965d5a..5539466595 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-13.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-13 description: > Array.prototype.reduceRight - callbackfn is called with 4 formal parameter diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-14.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-14.js index 07437dba51..9e6fda6c1a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-14.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-14 description: Array.prototype.reduceRight - callbackfn uses arguments ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-16.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-16.js index 401a680ec0..91c71280cd 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-16.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-16 description: > Array.prototype.reduceRight - non-indexed properties are not called on an Array-like object diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-17.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-17.js index b2823532e8..1fe82db067 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-17.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-17 description: > Array.prototype.reduceRight - 'accumulator' used for current iteration is the result of previous iteration on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-18.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-18.js index 28d86867b7..21e9608728 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-18.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-18 description: > Array.prototype.reduceRight - 'accumulator' used for first iteration is the value of 'initialValue' when it is present on an diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-19.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-19.js index 991b82cf09..4189b047dd 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-19.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-19 description: > Array.prototype.reduceRight - value of 'accumulator' used for first iteration is the value of max index property which is not diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-2.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-2.js index 238b1e2a3e..4579e9fb30 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-2.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-2 description: > Array.prototype.reduceRight - callbackfn called with correct parameters (initialvalue passed) diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-20.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-20.js index 09cf7e0999..dafc6e7f8d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-20.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-20 description: Array.prototype.reduceRight - undefined can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-21.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-21.js index 83f18c38c5..2172402a4b 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-21.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-21 description: Array.prototype.reduceRight - null can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-22.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-22.js index e130868f08..9a87049c38 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-22.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-22 description: > Array.prototype.reduceRight - boolean primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-23.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-23.js index dc7dba028e..c2710fe8b3 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-23.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-23 description: > Array.prototype.reduceRight - number primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-24.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-24.js index 768eb6a3dd..5c69c3b2e4 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-24.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-24 description: > Array.prototype.reduceRight - string primitive can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-25.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-25.js index 7d37c5f2ac..7fb448c9dc 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-25.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-25 description: > Array.prototype.reduceRight - Function Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-26.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-26.js index e95896266c..4a87f23a19 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-26.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-26 description: > Array.prototype.reduceRight - Array Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-27.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-27.js index b5f187df0e..4ca5e0a2fb 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-27.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-27 description: > Array.prototype.reduceRight - String Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-28.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-28.js index e8f4b8bc06..e09fe28985 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-28.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-28 description: > Array.prototype.reduceRight - Boolean Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-29.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-29.js index 7194c1789b..8d2aedc597 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-29.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-29 description: > Array.prototype.reduceRight - Number Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-3.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-3.js index 86a77aa365..545be2fc65 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-3.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-3 description: Array.prototype.reduceRight - callbackfn takes 4 arguments ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-30.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-30.js index 0df7790188..bc0ac2aabf 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-30.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-30 description: > Array.prototype.reduceRight - the Math Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-31.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-31.js index 092e60ecf7..249a8ceb8d 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-31.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-31 description: > Array.prototype.reduceRight - Date Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-32.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-32.js index 921bc654da..7809dc5ed9 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-32.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-32.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-32 description: > Array.prototype.reduceRight - RegExp Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-33.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-33.js index 37a2bd4a68..d779aa3d18 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-33.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-33.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-33 description: Array.prototype.reduceRight - the JSON can be used as accumulator ---*/ diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-34.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-34.js index 72fcc0cc56..a0e246546a 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-34.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-34.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-34 description: > Array.prototype.reduceRight - Error Object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-35.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-35.js index db05c37e0d..a5fc3e0dfd 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-35.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-35.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-35 description: > Array.prototype.reduceRight - the Arguments object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-37.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-37.js index 23314a32bd..26e5699387 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-37.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-37.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-37 description: > Array.prototype.reduceRight - the global object can be used as accumulator diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4-s.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4-s.js index 35efbafc9e..795981807e 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4-s.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-4-s description: > Array.prototype.reduceRight - undefined passed as thisValue to strict callbackfn diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4.js index 7dd1ce5ed0..05e4b0c143 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-4 description: > Array.prototype.reduceRight - k values are passed in acending numeric order diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-5.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-5.js index ccb63b8118..39ebca9281 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-5.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-5 description: > Array.prototype.reduceRight - k values are accessed during each iteration and not prior to starting the loop on an Array diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-7.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-7.js index f6f26025d8..345e855110 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-7.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-7 description: > Array.prototype.reduceRight - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-8.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-8.js index 439445c5b6..acc7834caa 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-8.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-8 description: > Array.prototype.reduceRight - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-9.js index c1dfba3289..eb0044ee31 100644 --- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-9.js +++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es5id: 15.4.4.22-9-c-ii-9 description: > Array.prototype.reduceRight - callbackfn is called with 0 formal parameter diff --git a/test/built-ins/Array/prototype/reduceRight/name.js b/test/built-ins/Array/prototype/reduceRight/name.js index c45d1e44bc..010dfd0b1b 100644 --- a/test/built-ins/Array/prototype/reduceRight/name.js +++ b/test/built-ins/Array/prototype/reduceRight/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reduceright -es6id: 22.1.3.19 description: > Array.prototype.reduceRight.name is "reduceRight". info: | diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T1.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T1.js index fd092bbb99..cc7a0c7a5a 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T1.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T1.js @@ -6,7 +6,6 @@ info: | The elements of the array are rearranged so as to reverse their order. The object is returned as the result of the call esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A1_T1 description: Checking case when reverse is given no arguments or one argument ---*/ diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T2.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T2.js index a488885d41..1099249e96 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T2.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A1_T2.js @@ -6,7 +6,6 @@ info: | The elements of the array are rearranged so as to reverse their order. The object is returned as the result of the call esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A1_T2 description: Checking this algorithm, elements are objects and primitives ---*/ diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T1.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T1.js index 3840475991..dae07799c3 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T1.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T1.js @@ -6,7 +6,6 @@ info: | The reverse function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A2_T1 description: > Checking this for Object object, elements are objects and primitives, length is integer diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T2.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T2.js index 77693f71ce..f3f4e87668 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T2.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T2.js @@ -6,7 +6,6 @@ info: | The reverse function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A2_T2 description: > Checking this for Object object, elements are objects and primitives, length is not integer diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T3.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T3.js index 2fd9a2d2a8..838b012ff9 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T3.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A2_T3.js @@ -6,7 +6,6 @@ info: | The reverse function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A2_T3 description: > Checking this for Object object, elements are objects and primitives, length is string diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A3_T3.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A3_T3.js index c6c2aeba93..2f379aa07c 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A3_T3.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A3_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A3_T3 description: length = -4294967294 ---*/ diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T1.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T1.js index 44fefbf426..8457bf4df3 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T1.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A4_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T2.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T2.js index 942d287ad7..f0043ba60a 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T2.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A4_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A5.7.js b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A5.7.js index 169401e981..97b432c360 100644 --- a/test/built-ins/Array/prototype/reverse/S15.4.4.8_A5.7.js +++ b/test/built-ins/Array/prototype/reverse/S15.4.4.8_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The reverse property of Array can't be used as constructor esid: sec-array.prototype.reverse -es5id: 15.4.4.8_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/reverse/get_if_present_with_delete.js b/test/built-ins/Array/prototype/reverse/get_if_present_with_delete.js index b33ddc165e..2e26178712 100644 --- a/test/built-ins/Array/prototype/reverse/get_if_present_with_delete.js +++ b/test/built-ins/Array/prototype/reverse/get_if_present_with_delete.js @@ -19,7 +19,6 @@ info: | i. Let upperValue be Get(O, upperP). ii. ReturnIfAbrupt(upperValue). esid: sec-array.prototype.reverse -es6id: 22.1.3.20 ---*/ var array = ["first", "second"]; diff --git a/test/built-ins/Array/prototype/reverse/name.js b/test/built-ins/Array/prototype/reverse/name.js index a87ef73c2c..35770b38f6 100644 --- a/test/built-ins/Array/prototype/reverse/name.js +++ b/test/built-ins/Array/prototype/reverse/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.reverse -es6id: 22.1.3.20 description: > Array.prototype.reverse.name is "reverse". info: | diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.1_T1.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.1_T1.js index b087c14b74..e78579ae28 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.1_T1.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.1_T1.js @@ -6,7 +6,6 @@ info: | If length equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined esid: sec-array.prototype.shift -es5id: 15.4.4.9_A1.1_T1 description: Checking this algorithm ---*/ diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.2_T1.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.2_T1.js index b736fa0f34..8feb079419 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.2_T1.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A1.2_T1.js @@ -6,7 +6,6 @@ info: | The first element of the array is removed from the array and returned esid: sec-array.prototype.shift -es5id: 15.4.4.9_A1.2_T1 description: Checking this use new Array() and [] ---*/ diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T1.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T1.js index caf6bcb180..4998dbcbdc 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T1.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T1.js @@ -6,7 +6,6 @@ info: | The shift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.shift -es5id: 15.4.4.9_A2_T1 description: > If ToUint32(length) equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T2.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T2.js index af9768c912..9ba22e52ff 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T2.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T2.js @@ -6,7 +6,6 @@ info: | The shift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.shift -es5id: 15.4.4.9_A2_T2 description: > If ToUint32(length) equal zero, call the [[Put]] method of this object with arguments "length" and 0 and return undefined diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T3.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T3.js index 33b810687d..4ea1332116 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T3.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T3.js @@ -6,7 +6,6 @@ info: | The shift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.shift -es5id: 15.4.4.9_A2_T3 description: > The first element of the array is removed from the array and returned diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T4.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T4.js index 457807c359..68feee8db3 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T4.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T4.js @@ -6,7 +6,6 @@ info: | The shift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.shift -es5id: 15.4.4.9_A2_T4 description: > The first element of the array is removed from the array and returned diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T5.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T5.js index 51e927577b..a550ce4194 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T5.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A2_T5.js @@ -6,7 +6,6 @@ info: | The shift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.shift -es5id: 15.4.4.9_A2_T5 description: > Operator use ToNumber from length. If Type(value) is Object, evaluate ToPrimitive(value, Number) diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A3_T3.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A3_T3.js index f1c786b210..0bf901459d 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A3_T3.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A3_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.shift -es5id: 15.4.4.9_A3_T3 description: length is arbitrarily ---*/ diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T1.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T1.js index 8b78546308..cf26b36144 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T1.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.shift -es5id: 15.4.4.9_A4_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T2.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T2.js index 20fb5644e3..1f9778fc3a 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T2.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.shift -es5id: 15.4.4.9_A4_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/shift/S15.4.4.9_A5.7.js b/test/built-ins/Array/prototype/shift/S15.4.4.9_A5.7.js index 26901c5922..1cf5ba528b 100644 --- a/test/built-ins/Array/prototype/shift/S15.4.4.9_A5.7.js +++ b/test/built-ins/Array/prototype/shift/S15.4.4.9_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The shift property of Array can't be used as constructor esid: sec-array.prototype.shift -es5id: 15.4.4.9_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/shift/name.js b/test/built-ins/Array/prototype/shift/name.js index e5849a6f04..77c18ea51a 100644 --- a/test/built-ins/Array/prototype/shift/name.js +++ b/test/built-ins/Array/prototype/shift/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.shift -es6id: 22.1.3.21 description: > Array.prototype.shift.name is "shift". info: | diff --git a/test/built-ins/Array/prototype/slice/15.4.4.10-10-c-ii-1.js b/test/built-ins/Array/prototype/slice/15.4.4.10-10-c-ii-1.js index ec1f509d3a..3f7122b0f0 100644 --- a/test/built-ins/Array/prototype/slice/15.4.4.10-10-c-ii-1.js +++ b/test/built-ins/Array/prototype/slice/15.4.4.10-10-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.slice -es5id: 15.4.4.10-10-c-ii-1 description: > Array.prototype.slice will slice a string from start to end when index property (read-only) exists in Array.prototype (Step 10.c.ii) diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T1.js index befb1fd88c..a5ea47d1ef 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T1.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T1 description: length > end > start = 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T2.js index 5955eb054e..70124e2396 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T2.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T2 description: length > end = start > 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T3.js index 1967fdbca4..413c0baf43 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T3.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T3 description: length > start > end > 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T4.js index 719d7634c5..027a190fd9 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T4.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T4 description: length = end = start > 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T5.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T5.js index 6c6e24b859..601c471dfe 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T5.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T5.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T5 description: length = end > start > 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T6.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T6.js index 63a86046ab..6fe5094f27 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T6.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T6.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T6 description: length > end > start > 0; ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T7.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T7.js index 158c4e01d5..598aca725f 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T7.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.1_T7.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.1_T7 description: end > length > start > 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T1.js index f79bd3d4fe..ff1bd57f62 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T1.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.2_T1 description: length > end = abs(start), start < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T2.js index ef60e55af9..e2761acc8d 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T2.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.2_T2 description: length = end > abs(start), start < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T3.js index c598e86791..1d56fa7a82 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T3.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.2_T3 description: abs(start) = length > end > 0, start < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T4.js index c12138e367..8d1b93ce56 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.2_T4.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is positive, use min(end, length) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.2_T4 description: abs(start) > length = end > 0, start < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T1.js index 664ed6861a..7500b4809f 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T1.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.3_T1 description: length > abs(end) > start = 0, end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T2.js index 761cb1266d..17b017809e 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T2.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.3_T2 description: length > abs(end) > start > 0, end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T3.js index 37f75f8cb1..cf585fd856 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T3.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.3_T3 description: length = abs(end) > start = 0, end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T4.js index c62284187e..68aa8b0ffc 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.3_T4.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.3_T4 description: abs(end) > length > start > 0, end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T1.js index ac01bd21b0..a4d1f9d50e 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T1.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.4_T1 description: -length = start < end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T2.js index a08595272a..e04f57c875 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T2.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.4_T2 description: -length < start < end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T3.js index 0942b395b2..4e86131342 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T3.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.4_T3 description: start < -length < end < 0 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T4.js index 3536e83a97..96277f586c 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.4_T4.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If end is negative, use max(end + length, 0) esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.4_T4 description: start = end < -length ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T1.js index 47fc27eafe..397ff15251 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T1.js @@ -4,7 +4,6 @@ /*--- info: If end is undefined use length esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.5_T1 description: end === undefined ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T2.js index d6423de98c..d277d83d2c 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A1.5_T2.js @@ -4,7 +4,6 @@ /*--- info: If end is undefined use length esid: sec-array.prototype.slice -es5id: 15.4.4.10_A1.5_T2 description: end is absent ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T1.js index ceecbe2ae4..88c3c66685 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.1_T1 description: start is not integer ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T2.js index be2087bab3..ab275bf908 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.1_T2 description: start = NaN ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T3.js index 41514e0279..6ceda4266a 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T3.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.1_T3 description: start = Infinity ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T4.js index 7d1f0fc99b..f12710d206 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T4.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.1_T4 description: start = -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T5.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T5.js index e0c60b2fea..e8a5291152 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T5.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.1_T5.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.1_T5 description: ToInteger use ToNumber ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T1.js index b5274f83b3..98bd1e7ea2 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from end esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.2_T1 description: end is not integer ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T2.js index ab712d9ba1..4ed86d7139 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from end esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.2_T2 description: end = NaN ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T3.js index 31c4a03593..39c22bea3f 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T3.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from end esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.2_T3 description: end = Infinity ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T4.js index d5f4063e89..fba149a386 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T4.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from end esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.2_T4 description: end = -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T5.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T5.js index 78affa8a2c..765396a17a 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T5.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2.2_T5.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from end esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2.2_T5 description: ToInteger use ToNumber ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T1.js index 05fb643f1c..c9a779c20f 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T1.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T1 description: > If start is positive, use min(start, length). If end is positive, use min(end, length) diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T2.js index 0971b1a476..484f00fe60 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T2.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T2 description: > If start is negative, use max(start + length, 0). If end is positive, use min(end, length) diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T3.js index 9214694c6a..e8790d3e96 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T3.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T3 description: > If start is positive, use min(start, length). If end is negative, use max(end + length, 0) diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T4.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T4.js index 398423039f..b5e159f7a1 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T4.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T4.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T4 description: > If start is negative, use max(start + length, 0). If end is negative, use max(end + length, 0) diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T5.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T5.js index 850f2bc03f..5f58f0e39a 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T5.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T5.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T5 description: If end is undefined use length ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T6.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T6.js index 1f47482a7d..fb14cd1d5c 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T6.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A2_T6.js @@ -6,7 +6,6 @@ info: | The slice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.slice -es5id: 15.4.4.10_A2_T6 description: If end is undefined use length ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js index 63b69324ba..49a95538dd 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.slice -es5id: 15.4.4.10_A3_T1 description: length = 4294967296 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js index d6d1c630f2..1e7eaad224 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.slice -es5id: 15.4.4.10_A3_T2 description: length = 4294967297 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T3.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T3.js index 95da2f2238..10ba4239e4 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T3.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToUint32(length) for non Array objects esid: sec-array.prototype.slice -es5id: 15.4.4.10_A3_T3 description: length = -1 ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A4_T1.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A4_T1.js index 5d7bf0ca0b..75bce48bcd 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A4_T1.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.slice -es5id: 15.4.4.10_A4_T1 description: "[[Prototype]] of Array instance is Array.prototype" ---*/ diff --git a/test/built-ins/Array/prototype/slice/S15.4.4.10_A5.7.js b/test/built-ins/Array/prototype/slice/S15.4.4.10_A5.7.js index 45604b2905..d1403a7c74 100644 --- a/test/built-ins/Array/prototype/slice/S15.4.4.10_A5.7.js +++ b/test/built-ins/Array/prototype/slice/S15.4.4.10_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The slice property of Array can't be used as constructor esid: sec-array.prototype.slice -es5id: 15.4.4.10_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/slice/create-ctor-non-object.js b/test/built-ins/Array/prototype/slice/create-ctor-non-object.js index 07d95cd580..40f110d99a 100644 --- a/test/built-ins/Array/prototype/slice/create-ctor-non-object.js +++ b/test/built-ins/Array/prototype/slice/create-ctor-non-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: > Behavior when `constructor` property is neither an Object nor undefined diff --git a/test/built-ins/Array/prototype/slice/create-ctor-poisoned.js b/test/built-ins/Array/prototype/slice/create-ctor-poisoned.js index 678fc0a117..cb1852dc0c 100644 --- a/test/built-ins/Array/prototype/slice/create-ctor-poisoned.js +++ b/test/built-ins/Array/prototype/slice/create-ctor-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Abrupt completion from `constructor` property access info: | diff --git a/test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js b/test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js index c809860842..f918c15a83 100644 --- a/test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js +++ b/test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Abrupt completion from creating a new array info: | diff --git a/test/built-ins/Array/prototype/slice/create-non-array.js b/test/built-ins/Array/prototype/slice/create-non-array.js index d1cbc45859..90f2e9edec 100644 --- a/test/built-ins/Array/prototype/slice/create-non-array.js +++ b/test/built-ins/Array/prototype/slice/create-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Constructor is ignored for non-Array values info: | diff --git a/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-array.js index db415e073b..b7289df179 100644 --- a/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.22 esid: sec-array.prototype.slice description: Prefer Array constructor of current realm record info: | diff --git a/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js b/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js index 6305730c04..bc47d058f6 100644 --- a/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js +++ b/test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.22 esid: sec-array.prototype.slice description: Accept non-Array constructors from other realms info: | diff --git a/test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js b/test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js index ca7c33d983..ff014611a4 100644 --- a/test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js +++ b/test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: > Ensure a RangeError is thrown when a proxied array returns an invalid array length. diff --git a/test/built-ins/Array/prototype/slice/create-proxy.js b/test/built-ins/Array/prototype/slice/create-proxy.js index 65aa4dd3b2..994cd7dc70 100644 --- a/test/built-ins/Array/prototype/slice/create-proxy.js +++ b/test/built-ins/Array/prototype/slice/create-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Species constructor of a Proxy object whose target is an array info: | diff --git a/test/built-ins/Array/prototype/slice/create-revoked-proxy.js b/test/built-ins/Array/prototype/slice/create-revoked-proxy.js index 7b8e160e2c..c20f6a207a 100644 --- a/test/built-ins/Array/prototype/slice/create-revoked-proxy.js +++ b/test/built-ins/Array/prototype/slice/create-revoked-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Abrupt completion from constructor that is a revoked Proxy object info: | diff --git a/test/built-ins/Array/prototype/slice/create-species-abrupt.js b/test/built-ins/Array/prototype/slice/create-species-abrupt.js index aaa92accb2..9d741af069 100644 --- a/test/built-ins/Array/prototype/slice/create-species-abrupt.js +++ b/test/built-ins/Array/prototype/slice/create-species-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Species constructor returns an abrupt completion info: | diff --git a/test/built-ins/Array/prototype/slice/create-species-neg-zero.js b/test/built-ins/Array/prototype/slice/create-species-neg-zero.js index f72df09eb8..36fb573775 100644 --- a/test/built-ins/Array/prototype/slice/create-species-neg-zero.js +++ b/test/built-ins/Array/prototype/slice/create-species-neg-zero.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: The value `-0` is converted to `0` info: | diff --git a/test/built-ins/Array/prototype/slice/create-species-non-ctor.js b/test/built-ins/Array/prototype/slice/create-species-non-ctor.js index fd094ea159..598368184a 100644 --- a/test/built-ins/Array/prototype/slice/create-species-non-ctor.js +++ b/test/built-ins/Array/prototype/slice/create-species-non-ctor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: > Behavior when the @@species attribute is a non-constructor object diff --git a/test/built-ins/Array/prototype/slice/create-species-null.js b/test/built-ins/Array/prototype/slice/create-species-null.js index 38bcae57a9..fd4121b082 100644 --- a/test/built-ins/Array/prototype/slice/create-species-null.js +++ b/test/built-ins/Array/prototype/slice/create-species-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: > A null value for the @@species constructor is interpreted as `undefined` diff --git a/test/built-ins/Array/prototype/slice/create-species-poisoned.js b/test/built-ins/Array/prototype/slice/create-species-poisoned.js index 3bb17c11e7..81d47e1811 100644 --- a/test/built-ins/Array/prototype/slice/create-species-poisoned.js +++ b/test/built-ins/Array/prototype/slice/create-species-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Abrupt completion from `@@species` property access info: | diff --git a/test/built-ins/Array/prototype/slice/create-species-undef.js b/test/built-ins/Array/prototype/slice/create-species-undef.js index c17bc73dd1..1e4d5c26be 100644 --- a/test/built-ins/Array/prototype/slice/create-species-undef.js +++ b/test/built-ins/Array/prototype/slice/create-species-undef.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/slice/create-species.js b/test/built-ins/Array/prototype/slice/create-species.js index 6b099b09c8..28c6cb1886 100644 --- a/test/built-ins/Array/prototype/slice/create-species.js +++ b/test/built-ins/Array/prototype/slice/create-species.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.23 esid: sec-array.prototype.slice description: Species constructor is used to create a new instance info: | diff --git a/test/built-ins/Array/prototype/slice/name.js b/test/built-ins/Array/prototype/slice/name.js index 3f7bcce17e..29163790ee 100644 --- a/test/built-ins/Array/prototype/slice/name.js +++ b/test/built-ins/Array/prototype/slice/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.slice -es6id: 22.1.3.22 description: > Array.prototype.slice.name is "slice". info: | diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-1.js index d4f780dfae..90ee0a2ebc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-1 description: Array.prototype.some applied to undefined throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-10.js index b0bf38a18c..a909f865f8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-10 description: Array.prototype.some applied to the Math object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-11.js index d61f9594be..b8bf81857f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-11 description: Array.prototype.some applied to Date object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-12.js index 905cf42746..5c4e700bd8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-12 description: Array.prototype.some applied to RegExp object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-13.js index 55105713d5..2f2fc65b81 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-13 description: Array.prototype.some applied to the JSON object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-14.js index 8218287846..81a43863b0 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-14 description: Array.prototype.some applied to Error object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-15.js index 27cfa61dbe..1010ec6246 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-15 description: Array.prototype.some applied to the Arguments object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-2.js index abc12eef8d..fa93cab9b2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-2 description: Array.prototype.some applied to null throws a TypeError ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-3.js index 38edf932d9..66231b9a1c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-3 description: Array.prototype.some applied to boolean primitive ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-4.js index e025ac0c29..4f04b2eac2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-4 description: Array.prototype.some applied to Boolean object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-5.js index 827d030efd..1071f458c5 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-5 description: Array.prototype.some applied to number primitive ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-6.js index 78791585ec..258c687954 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-6 description: Array.prototype.some applied to Number object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-7.js index f69a384e39..cdc4e4f2c6 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-7 description: Array.prototype.some applied to applied to string primitive ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-8.js index 4a439b90ef..801bd12aaf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-8 description: Array.prototype.some applied to String object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-1-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-1-9.js index 866d6f61b8..4cd62ecdb4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-1-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-1-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-1-9 description: Array.prototype.some applied to Function object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js index aa8eeca34c..789daf1405 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-1 description: > Array.prototype.some - 'length' is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-10.js index 5a97e40fd9..8699415395 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-10 description: > Array.prototype.some - 'length' is an inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-11.js index 0406211196..59c389650c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-11 description: > Array.prototype.some - 'length' is an own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-12.js index 0f4f5077fd..1107576b1f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-12 description: > Array.prototype.some - 'length' is own accessor property without a get function that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-13.js index 568c277050..eb66d5c969 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-13 description: > Array.prototype.some - 'length' is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-14.js index 78ee06b3e7..20ed622804 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-14 description: > Array.prototype.some - 'length' property doesn't exist on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-17.js index 21eb5febac..6fefe01b77 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-17 description: > Array.prototype.some applied to the Arguments object which implements its own property get method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-18.js index 336a943e4e..2912b4b85e 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-18 description: > Array.prototype.some applied to String object which implements its own property get method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-19.js index 07c1ada28b..ba347389a3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-19 description: > Array.prototype.some applied to Function object which implements its own property get method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-2.js index e8d870de64..35947e0ff4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-2 description: Array.prototype.some - 'length' is own data property on an Array ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-3.js index f663fb2742..129ed8c187 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-3 description: > Array.prototype.some - 'length' is an own data property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-4.js index b966fb8c8b..fe6c2ebf93 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-4 description: > Array.prototype.some - 'length' is an own data property that overrides an inherited data property on an array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-5.js index 6433283d2a..eebefdd659 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-5 description: > Array.prototype.some - 'length' is an own data property that overrides an inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-6.js index 2b322c6257..acaeef8ea1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-6 description: > Array.prototype.some - 'length' is an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-7.js index 0a3e4b4e68..ae68614d2b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-7 description: > Array.prototype.some - 'length' is an own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-8.js index 9e23a93810..488691a1d1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-8 description: > Array.prototype.some - 'length' is an own accessor property that overrides an inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-9.js index c670d9a8d5..b260e427bd 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-2-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-2-9 description: > Array.prototype.some - 'length' is an own accessor property that overrides an inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-1.js index 8f93e82c57..80f41ae9b7 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-1 description: Array.prototype.some - value of 'length' is undefined ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-10.js index ef0361216a..024def88e6 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-10 description: Array.prototype.some - value of 'length' is a number (value is NaN) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-11.js index fa97906421..34df8e740a 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-11 description: > Array.prototype.some - 'length' is a string containing a positive number diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-12.js index ac407faa9f..13a579dd55 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-12 description: > Array.prototype.some - 'length' is a string containing a negative number diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-13.js index dcaa0d724f..ee2960705b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-13 description: > Array.prototype.some - 'length' is a string containing a decimal number diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-14.js index 77607bfcaf..794fa892ef 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-14 description: Array.prototype.some - 'length' is a string containing +/-Infinity ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-15.js index a74c4bcebd..23540479e2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-15 description: > Array.prototype.some - 'length' is a string containing an exponential number diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-16.js index 057f068765..a003df7d21 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-16 description: Array.prototype.some - 'length' is a string containing a hex number ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-17.js index 857fa9a373..d2a21e96e2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-17 description: > Array.prototype.some - 'length' is a string containing a number with leading zeros diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-18.js index 13de82ccd0..e92332c5ef 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-18 description: > Array.prototype.some - value of 'length' is a string that can't convert to a number diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-19.js index c8521e83c3..fcb0fdc46d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-19 description: > Array.prototype.some - value of 'length' is an Object which has an own toString method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-2.js index 2898ce5ae7..5c909c776d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-2 description: > Array.prototype.some on an Array-like object if 'length' is 1 (length overridden to true(type conversion)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-20.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-20.js index 9464bc45e2..17588fcb11 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-20.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-20 description: > Array.prototype.some - value of 'length' is an Object which has an own valueOf method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-21.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-21.js index c0d6aa9c83..6bcc7c52e1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-21.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-21 description: > Array.prototype.some - 'length' is an object that has an own valueOf method that returns an object and toString method that diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-22.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-22.js index 1dc3f2b006..8cc2564e33 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-22.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-22 description: > Array.prototype.some throws TypeError exception when 'length' is an object with toString and valueOf methods that don�t return diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-23.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-23.js index ec119aec48..0dd0b7c862 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-23.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-23 description: > Array.prototype.some uses inherited valueOf method when 'length' is an object with an own toString and inherited valueOf methods diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-24.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-24.js index 562d7fdf15..c7c025529c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-24.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-24 description: > Array.prototype.some - value of 'length' is a positive non-integer, ensure truncation occurs in the proper direction diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-25.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-25.js index e1916896b9..d54af7bfc3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-25.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-25 description: Array.prototype.some - value of 'length' is a negative non-integer ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-28.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-28.js index b470634177..3141b5a718 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-28.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-28 description: Array.prototype.some - value of 'length' is boundary value (2^32) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-29.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-29.js index 132a0ec3b9..85256a82b1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-29.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-29 description: > Array.prototype.some - value of 'length' is boundary value (2^32 + 1) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-3.js index 97637f6a7b..50c0ee6f3f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-3 description: Array.prototype.some - value of 'length' is a number (value is 0) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-4.js index 3a35aa1497..2805f9d1cf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-4 description: Array.prototype.some - value of 'length' is a number (value is +0) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-5.js index 2eddf9891a..6a7a6cdb7e 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-5 description: Array.prototype.some - value of 'length' is a number (value is -0) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-6.js index c53b2808f3..230f9a918b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-6 description: > Array.prototype.some - value of 'length' is a number (value is positive) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-7.js index fcfdbecf29..505f1bd0f7 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-7 description: > Array.prototype.some - value of 'length' is a number (value is negative) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-8.js index 6946b1899b..3f1991ebb7 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-8 description: > Array.prototype.some - value of 'length' is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-3-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-3-9.js index c0b2c5c15f..8871c79168 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-3-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-3-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-3-9 description: > Array.prototype.some - value of 'length' is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-1.js index 30976864ef..a9554887c2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-1 description: Array.prototype.some throws TypeError if callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-10.js index 3300ce5321..c22608144f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-10 description: > Array.prototype.some - the exception is not thrown if exception was thrown by step 2 diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-11.js index d0c7e6a74d..f4aed4dfa2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-11 description: > Array.prototype.some - the exception is not thrown if exception was thrown by step 3 diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-12.js index 156090da39..2187d6cada 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-12 description: Array.prototype.some - 'callbackfn' is a function ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-15.js index c46be1588f..738c18689b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-15 description: > Array.prototype.some - calling with no callbackfn is the same as passing undefined for callbackfn diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-2.js index 260caee75c..23acfa6938 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-2 description: > Array.prototype.some throws ReferenceError if callbackfn is unreferenced diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-3.js index 74b4e4acc7..5bc7d428b8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-3 description: Array.prototype.some throws TypeError if callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-4.js index ef357be267..f5e8c40bda 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-4 description: Array.prototype.some throws TypeError if callbackfn is boolean ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-5.js index 7a281a2295..63692cf652 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-5 description: Array.prototype.some throws TypeError if callbackfn is number ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-6.js index 7339b3cc4f..2aeee9da73 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-6 description: Array.prototype.some throws TypeError if callbackfn is string ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-7.js index 06105fd1eb..41220aaabf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-7 description: > Array.prototype.some throws TypeError if callbackfn is Object without a Call internal method diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-8.js index 4735534bd5..06de48d580 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-8 description: > Array.prototype.some - side effects produced by step 2 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-4-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-4-9.js index 7e77733591..9fd4fcc9a1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-4-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-4-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-4-9 description: > Array.prototype.some - side effects produced by step 3 are visible when an exception occurs diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-1-s.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-1-s.js index f94bc04c65..291a92c572 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-1-s.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-1-s.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-1-s description: Array.prototype.some - thisArg not passed to strict callbackfn flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-1.js index 9effb1bb12..d131e9cea3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-1 description: Array.prototype.some - thisArg is passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-10.js index 7b9f0b960e..480a3f2745 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-10 description: Array.prototype.some - Array Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-11.js index 19c1305d52..5eec7d71cb 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-11 description: Array.prototype.some - String object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-12.js index 7f908ab7f1..be24574428 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-12 description: Array.prototype.some - Boolean object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-13.js index d5d94de657..92456b02ec 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-13 description: Array.prototype.some - Number object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-14.js index 93e4deb575..35d37d02a4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-14 description: Array.prototype.some - the Math object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-15.js index 1456812266..ab527b7bae 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-15 description: Array.prototype.some - Date object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-16.js index e9a56f636b..4a6f150893 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-16 description: Array.prototype.some - RegExp object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-17.js index 27ec167f4c..51232b98eb 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-17 description: Array.prototype.some - the JSON object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-18.js index 338b3c0dd4..7ec041cfc1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-18 description: Array.prototype.some - Error object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-19.js index 03815a02d2..6f5def9446 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-19 description: Array.prototype.some - the Arguments object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-2.js index e0142b343a..1577604043 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-2 description: Array.prototype.some - thisArg is Object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-21.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-21.js index e80fe9b22e..0107efce42 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-21.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-21 description: Array.prototype.some - the global object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-22.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-22.js index 4480983121..5b1b63d8d1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-22.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-22 description: Array.prototype.some - boolean primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-23.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-23.js index a5f030fafe..93ccd51a18 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-23.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-23 description: Array.prototype.some - number primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-24.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-24.js index a1d268d09b..b3a1cdae7b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-24.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-24 description: Array.prototype.some - string primitive can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-25.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-25.js index 2c7c60a5a4..c42fc3479d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-25.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-25 description: Array.prototype.some - thisArg not passed flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-3.js index 6e5d2f245e..26002e2674 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-3 description: Array.prototype.some - thisArg is Array ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-4.js index 32e813992a..ca1ff11db4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-4 description: > Array.prototype.some - thisArg is object from object template(prototype) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-5.js index 6b946e865a..1e2e8ef0b8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-5 description: Array.prototype.some - thisArg is object from object template ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-6.js index e0d0749176..4942cb794d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-6 description: Array.prototype.some - thisArg is function ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js index ae6c1fd3d6..3ea60b0d58 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-7 description: Array.prototype.some - built-in functions can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-9.js index 155ab3fd2a..05a96c5e5d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-5-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-5-9 description: Array.prototype.some - Function Object can be used as thisArg ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-1.js index 081c7a7889..65fa325c9a 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-1 description: > Array.prototype.some considers new elements added to array after it is called diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-2.js index 117aeb7386..c250f37cd8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-2 description: > Array.prototype.some considers new value of elements in array after it is called diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-3.js index 8b193f9333..67b72f2e05 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-3 description: > Array.prototype.some doesn't visit deleted elements in array after it is called diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-4.js index 7d683efcf8..c6cb8c4498 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-4 description: > Array.prototype.some doesn't visit deleted elements when Array.length is decreased diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-5.js index 19fbb07fc5..00aa301316 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-5 description: > Array.prototype.some doesn't consider newly added elements in sparse array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-6.js index a5f38a483b..f9a0fa86fd 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-6 description: > Array.prototype.some visits deleted element in array after the call when same index is also present in prototype diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-8.js index 2712e0c85b..9c4fd69621 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-8 description: Array.prototype.some - no observable effects occur if length is 0 ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-9.js index d07c519b08..8616d5cceb 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-9 description: > Array.prototype.some - modifications to length don't change number of iterations diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-1.js index b6b52b0996..a6679e7ac9 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-1 description: > Array.prototype.some - callbackfn not called for indexes never been assigned values diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-10.js index 008b55632c..a1c61c9781 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-10 description: > Array.prototype.some - deleting property of prototype causes prototype index property not to be visited on an Array-like Object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-11.js index 3e457ac48e..123feab6f9 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-11 description: > Array.prototype.some - deleting property of prototype causes prototype index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-12.js index 2eeb1e90c1..8f23488c78 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-12 description: > Array.prototype.some - deleting own property with prototype property causes prototype index property to be visited on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-13.js index c15b1fade7..f088846589 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-13 description: > Array.prototype.some - deleting own property with prototype property causes prototype index property to be visited on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-14.js index ebcb32a565..c2105020d7 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-14 description: > Array.prototype.some - decreasing length of array causes index property not to be visited diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-15.js index 69f8f9a6c0..aa6b53cacf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-15 description: > Array.prototype.some - decreasing length of array with prototype property causes prototype index property to be visited diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-16.js index 86c3b3c000..8552dd4ecc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-16 description: > Array.prototype.some - decreasing length of array does not delete non-configurable properties diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-2.js index abf9b78b98..2f6bb26ac2 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-2 description: Array.prototype.some - added properties in step 2 are visible here ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-3.js index 2193d2469b..4a7dc443a0 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-3 description: > Array.prototype.some - deleted properties in step 2 are visible here diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-4.js index 8b02ca3362..78ada081c4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-4 description: > Array.prototype.some - properties added into own object after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-5.js index ab0a8e637e..ee10a22a6f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-5 description: > Array.prototype.some - properties added into own object after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-6.js index 804282bc15..4c845dd760 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-6 description: > Array.prototype.some - properties can be added to prototype after current position are visited on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-7.js index 921e832ae0..0fdb68f152 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-7 description: > Array.prototype.some - properties can be added to prototype after current position are visited on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-8.js index 0ec7f33936..759c1c463d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-8 description: > Array.prototype.some - deleting own property causes index property not to be visited on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-9.js index 42272384d6..aaa729b8d3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-b-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-b-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-b-9 description: > Array.prototype.some - deleting own property causes index property not to be visited on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-1.js index 4f4115e587..cb1703b0cf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-1 description: > Array.prototype.some - element to be retrieved is own data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-10.js index 85226cf16c..1f3eb4214b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-10 description: > Array.prototype.some - element to be retrieved is own accessor property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-11.js index f0c2c4a150..b89dced6a4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-11 description: > Array.prototype.some - element to be retrieved is own accessor property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-12.js index 753d317a6d..287e9098dc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-12 description: > Array.prototype.some - element to be retrieved is own accessor property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-13.js index e358b560c7..b02fd69e05 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-13 description: > Array.prototype.some - element to be retrieved is own accessor property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-14.js index bdb2d85ab3..22112b679c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-14 description: > Array.prototype.some - element to be retrieved is own accessor property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-15.js index f357611b9b..2faa19e1d6 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-15 description: > Array.prototype.some - element to be retrieved is inherited accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-16.js index f610a757ff..4e6874e36f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-16 description: > Array.prototype.some - element to be retrieved is inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-17.js index f3206fd63b..c82be19476 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-17 description: > Array.prototype.some - element to be retrieved is own accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-18.js index 55f64f688a..587a5237b3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-18 description: > Array.prototype.some - element to be retrieved is own accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-19.js index 859dc40228..40e7c08a85 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-19 description: > Array.prototype.some - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-2.js index 543d15db45..22c849ee52 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-2 description: > Array.prototype.some - element to be retrieved is own data property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js index d39314005b..671713ba19 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-20 description: > Array.prototype.some - element to be retrieved is own accessor property without a get function that overrides an inherited diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-21.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-21.js index 3365018fc6..ebdb5f39e1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-21.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-21 description: > Array.prototype.some - element to be retrieved is inherited accessor property without a get function on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-22.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-22.js index 5635c65aaa..2a3b2fe767 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-22.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-22 description: > Array.prototype.some - element to be retrieved is inherited accessor property without a get function on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-25.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-25.js index fe7a12aad8..ddd160a5ad 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-25.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-25 description: > Array.prototype.some - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-26.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-26.js index 8a0dd4b0ff..54b4444b6c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-26.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-26 description: > Array.prototype.some - This object is the Arguments object which implements its own property get method (number of arguments equals diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-27.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-27.js index f54a10f05b..825358167c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-27.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-27.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-27 description: > Array.prototype.some - This object is the Arguments object which implements its own property get method (number of arguments is diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-28.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-28.js index 8e423c6155..e16e8304ee 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-28.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-28 description: > Array.prototype.some - element changed by getter on previous iterations is observed on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-29.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-29.js index ac802b1128..549b26f668 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-29.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-29 description: > Array.prototype.some - element changed by getter on previous iterations on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js index 0552315762..1be5cebff5 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-3 description: > Array.prototype.some - element to be retrieved is own data property that overrides an inherited data property on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-30.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-30.js index 4ce67a0b6c..99ab200511 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-30.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-30.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-30 description: > Array.prototype.some - unhandled exceptions happened in getter terminate iteration on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-31.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-31.js index 9d9cc00c1c..4728f107bc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-31.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-31.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-31 description: > Array.prototype.some - unhandled exceptions happened in getter terminate iteration on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-4.js index 64dd495a9b..473f2e4ae3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-4 description: > Array.prototype.some - element to be retrieved is own data property that overrides an inherited data property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-5.js index d8fcfaf35a..7a9b86df9c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-5 description: > Array.prototype.some - element to be retrieved is own data property that overrides an inherited accessor property on an diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-6.js index ef5da14095..4d062efb0b 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-6 description: > Array.prototype.some - element to be retrieved is own data property that overrides an inherited accessor property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-7.js index f346f92524..be8c434dd8 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-7 description: > Array.prototype.some - element to be retrieved is inherited data property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-8.js index fb71d4fc7e..2f1c2ddb3f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-8 description: > Array.prototype.some - element to be retrieved is inherited data property on an Array diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-9.js index 2081432745..907ede50b1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-i-9 description: > Array.prototype.some - element to be retrieved is own accessor property on an Array-like object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-1.js index c865faae21..dfa6bbeaa6 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-1 description: Array.prototype.some - callbackfn called with correct parameters ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-10.js index 13301777ba..52ae8b9980 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-10 description: Array.prototype.some - callbackfn is called with 1 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-11.js index 3bf00f445a..e308a1d81f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-11 description: Array.prototype.some - callbackfn is called with 2 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-12.js index a892afde59..c56daa9ad4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-12 description: Array.prototype.some - callbackfn is called with 3 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-13.js index 6917e26355..76e61c4aaa 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-13 description: > Array.prototype.some - callbackfn that uses arguments object to get parameter value diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-16.js index d6fb5d60bc..1a4ca69a1f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-16 description: > Array.prototype.some - 'this' of 'callback' is a Boolean object when 'T' is not an object ('T' is a boolean primitive) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-17.js index 198346eb6e..9d66554543 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-17 description: > Array.prototype.some - 'this' of 'callbackfn' is a Number object when T is not an object (T is a number primitive) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-18.js index 9498f8079c..ab26b9da69 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-18 description: > Array.prototype.some - 'this' of 'callbackfn' is an String object when T is not an object (T is a string primitive) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-19.js index 4d0063e47b..9aea13479c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-19 description: Array.prototype.some - non-indexed properties are not called ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-2.js index be738c154f..6660f81f49 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-2 description: Array.prototype.some - callbackfn takes 3 arguments ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-20.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-20.js index 899fb2efb7..50bbb42a54 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-20.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-20 description: > Array.prototype.some - callbackfn called with correct parameters (thisArg is correct) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-21.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-21.js index 31d3af3b03..27647765fc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-21.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-21 description: > Array.prototype.some - callbackfn called with correct parameters (kValue is correct) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-22.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-22.js index e01efeac2b..9a78e70ccf 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-22.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-22 description: > Array.prototype.some - callbackfn called with correct parameters (the index k is correct) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-23.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-23.js index 58c4b0ef2c..6f0900d808 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-23.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-23 description: > Array.prototype.some - callbackfn called with correct parameters (this object O is correct) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-3.js index fb0265b5e2..cc4176c5d0 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-3 description: > Array.prototype.some immediately returns true if callbackfn returns true diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-4.js index 8642acfdbc..99654cd3cc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-4 description: > Array.prototype.some - k values are passed in ascending numeric order diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-5.js index 5b80ddcded..b3fb34df48 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-5 description: > Array.prototype.some - k values are accessed during each iteration and not prior to starting the loop diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-6.js index f67b3e415c..6dd6aead23 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-6 description: Array.prototype.some - arguments to callbackfn are self consistent ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-7.js index ff362211be..548b619aa5 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-7 description: > Array.prototype.some - unhandled exceptions happened in callbackfn terminate iteration diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-8.js index 451d0b3d37..d5b557543d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-8 description: > Array.prototype.some - element changed by callbackfn on previous iterations is observed diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-9.js index b9c6c8eda9..58562459ca 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-ii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-ii-9 description: Array.prototype.some - callbackfn is called with 0 formal parameter ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-1.js index 4e2074291e..817df0c227 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-1 description: Array.prototype.some - return value of callbackfn is undefined ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-10.js index d561708440..5cc285ec21 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-10 description: > Array.prototype.some - return value of callbackfn is a number (value is Infinity) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-11.js index 1defdc292c..1b83118f21 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-11 description: > Array.prototype.some - return value of callbackfn is a number (value is -Infinity) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-12.js index adfd8efbf5..20a214badd 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-12 description: > Array.prototype.some - return value of callbackfn is a number (value is NaN) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-13.js index 2e20fa5ba0..f8228bc87d 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-13 description: > Array.prototype.some - return value of callbackfn is an empty string diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-14.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-14.js index a15cbed88a..7a5d504106 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-14.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-14 description: > Array.prototype.some - return value of callbackfn is a non-empty string diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-15.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-15.js index 1de47b0a3e..678214a433 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-15.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-15 description: > Array.prototype.some - return value of callbackfn is Function object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-16.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-16.js index f0b7db75d4..df397bf8e1 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-16.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-16 description: > Array.prototype.some - return value of callbackfn is an Array object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-17.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-17.js index a2be9ec374..7aa752a1a4 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-17.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-17.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-17 description: > Array.prototype.some - return value of callbackfn is a String object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-18.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-18.js index 7d273f4ec4..bdb5823a61 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-18.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-18.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-18 description: > Array.prototype.some - return value of callbackfn is a Boolean object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-19.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-19.js index a87205ead3..7e7f021f18 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-19.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-19.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-19 description: > Array.prototype.some - return value of callbackfn is a Number object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-2.js index b52aff5276..05c56deb2a 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-2 description: Array.prototype.some - return value of callbackfn is null ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-20.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-20.js index 2911f87bcb..ae799b2ead 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-20.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-20.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-20 description: > Array.prototype.some - return value of callbackfn is the Math object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-21.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-21.js index 068cd5d0da..04dd1dce95 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-21.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-21.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-21 description: Array.prototype.some - return value of callbackfn is a Date object ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-22.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-22.js index b71d846358..db431c04ce 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-22.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-22.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-22 description: > Array.prototype.some - return value of callbackfn is a RegExp object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-23.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-23.js index c0316a94b4..e71acce31c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-23.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-23.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-23 description: > Array.prototype.some - return value of callbackfn is the JSON object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-24.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-24.js index f8ff2dc7f4..137f7fd147 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-24.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-24.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-24 description: > Array.prototype.some - return value of callbackfn is an Error object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-25.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-25.js index f0237397db..67ecb7834e 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-25.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-25.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-25 description: > Array.prototype.some - return value of callbackfn is the Arguments object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-26.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-26.js index d96e7e7834..1141adbd51 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-26.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-26.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-26 description: > Array.prototype.some - return value of callbackfn is the global object diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-28.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-28.js index e971d690dd..58d601a8dd 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-28.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-28.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-28 description: Array.prototype.some - true prevents further side effects ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-29.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-29.js index d0d8b0cdea..5c7ed8c139 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-29.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-29.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-29 description: > Array.prototype.some - return value (new Boolean(false)) of callbackfn is treated as true value diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-3.js index ab3d088db4..65bcbbf752 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-3 description: > Array.prototype.some - return value of callbackfn is a boolean (value is false) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-4.js index 9b885029ce..14c01e42d3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-4 description: > Array.prototype.some - return value of callbackfn is a boolean (value is true) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-5.js index f67054b66a..3a69106f37 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-5 description: > Array.prototype.some - return value of callbackfn is a number (value is 0) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-6.js index af66994245..8434d3c232 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-6 description: > Array.prototype.some - return value of callbackfn is a number (value is +0) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-7.js index ddb2d1df61..fe4f491359 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-7 description: > Array.prototype.some - return value of callbackfn is a number (value is -0) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-8.js index ce91332001..8a8def256a 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-8 description: > Array.prototype.some - return value of callbackfn is a number (value is positive number) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-9.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-9.js index 3f389202c6..d105531041 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-9.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-iii-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-7-c-iii-9 description: > Array.prototype.some - return value of callbackfn is a number (value is negative number) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-1.js index d37fa7cb25..27f536ad24 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-1.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-1 description: Array.prototype.some returns false if 'length' is 0 (empty array) ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-10.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-10.js index bb8b38ba1e..1cccf30dcd 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-10.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-10 description: Array.prototype.some - subclassed array when length is reduced ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-11.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-11.js index c5914d1a6d..a90eff23d3 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-11.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-11 description: > Array.prototype.some returns false when all calls to callbackfn return false diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-12.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-12.js index 0ba4ed10fb..8dffe5eded 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-12.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-12 description: > Array.prototype.some doesn't mutate the array on which it is called on diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-13.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-13.js index 863317f984..f042e49dd6 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-13.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-13 description: Array.prototype.some doesn't visit expandos ---*/ diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-2.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-2.js index 90ab6cb602..6777476fa9 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-2.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-2 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden to null (type conversion)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-3.js index efe0afb0c0..33a76bfedb 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-3.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-3 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden to false (type conversion)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-4.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-4.js index 32bfde4080..68c52bdf11 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-4.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-4 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden to 0 (type conversion)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-5.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-5.js index 1e2fe9b3bf..2e46ab23cc 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-5.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-5 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden to '0' (type conversion)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-6.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-6.js index 546c43f500..790864920c 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-6.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-6 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden with obj with valueOf) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-7.js index 1b4d757c00..b922408e8f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-7.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-7 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden with obj w/o valueOf (toString)) diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-8-8.js b/test/built-ins/Array/prototype/some/15.4.4.17-8-8.js index 1365c1fafb..d198190d4f 100644 --- a/test/built-ins/Array/prototype/some/15.4.4.17-8-8.js +++ b/test/built-ins/Array/prototype/some/15.4.4.17-8-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es5id: 15.4.4.17-8-8 description: > Array.prototype.some returns false if 'length' is 0 (subclassed Array, length overridden with [] diff --git a/test/built-ins/Array/prototype/some/name.js b/test/built-ins/Array/prototype/some/name.js index e9d7132c7d..dafb1347b2 100644 --- a/test/built-ins/Array/prototype/some/name.js +++ b/test/built-ins/Array/prototype/some/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.some -es6id: 22.1.3.23 description: > Array.prototype.some.name is "some". info: | diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.1_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.1_T1.js index 4b7b779410..03fa220c82 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.1_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.1_T1.js @@ -6,7 +6,6 @@ info: | If this object does not have a property named by ToString(j), and this object does not have a property named by ToString(k), return +0 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.1_T1 description: If comparefn is undefined, use SortCompare operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T1.js index 5a4152a679..ddc4567301 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T1.js @@ -7,7 +7,6 @@ info: | ToString(j), return 1. If this object does not have a property named by ToString(k), return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.2_T1 description: If comparefn is undefined, use SortCompare operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T2.js index b432109787..1215cc5e18 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.2_T2.js @@ -7,7 +7,6 @@ info: | ToString(j), return 1. If this object does not have a property named by ToString(k), return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.2_T2 description: If comparefn is not undefined ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.3_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.3_T1.js index 37e80fe19e..35d2f87b02 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.3_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.3_T1.js @@ -6,7 +6,6 @@ info: | If [[Get]] ToString(j) and [[Get]] ToString(k) are both undefined, return +0 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.3_T1 description: If comparefn is undefined, use SortCompare operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T1.js index ada761a1a5..02d4caa265 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T1.js @@ -6,7 +6,6 @@ info: | If [[Get]] ToString(j) is undefined, return 1. If [[]Get] ToString(k) is undefined, return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.4_T1 description: If comparefn is undefined, use SortCompare operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T2.js index 0f6a273571..4de5efad0c 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.4_T2.js @@ -6,7 +6,6 @@ info: | If [[Get]] ToString(j) is undefined, return 1. If [[]Get] ToString(k) is undefined, return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.4_T2 description: If comparefn is not undefined ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.5_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.5_T1.js index 321b6f63ff..5ced26fb5b 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.5_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A1.5_T1.js @@ -4,7 +4,6 @@ /*--- info: If comparefn is undefined, use SortCompare operator esid: sec-array.prototype.sort -es5id: 15.4.4.11_A1.5_T1 description: Checking sort() and sort(undefined) ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T1.js index 6e4cb1f948..582d527889 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T1.js @@ -7,7 +7,6 @@ info: | If ToString([[Get]] ToString(j)) > ToString([[Get]] ToString(k)), return 1; return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.1_T1 description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T2.js index 044858b0ab..257db5fb21 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T2.js @@ -7,7 +7,6 @@ info: | If ToString([[Get]] ToString(j)) > ToString([[Get]] ToString(k)), return 1; return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.1_T2 description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T3.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T3.js index c2bfb06155..4282527ea1 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T3.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.1_T3.js @@ -7,7 +7,6 @@ info: | If ToString([[Get]] ToString(j)) > ToString([[Get]] ToString(k)), return 1; return -1 esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.1_T3 description: Checking ToString operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T1.js index 771eba4c84..f6beef0516 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T1.js @@ -4,7 +4,6 @@ /*--- info: My comparefn is inverse implementation comparefn esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.2_T1 description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T2.js index 0075ca2990..217905ba9a 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T2.js @@ -4,7 +4,6 @@ /*--- info: My comparefn is inverse implementation comparefn esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.2_T2 description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T3.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T3.js index 6e5df4ec45..32fe782c9c 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T3.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A2.2_T3.js @@ -4,7 +4,6 @@ /*--- info: My comparefn is inverse implementation comparefn esid: sec-array.prototype.sort -es5id: 15.4.4.11_A2.2_T3 description: Checking ToString operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T1.js index c8fe6d58f2..8154460c2c 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T1.js @@ -6,7 +6,6 @@ info: | The sort function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.sort -es5id: 15.4.4.11_A3_T1 description: If comparefn is undefined, use SortCompare operator ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T2.js index 5da87d3d43..e289ead88e 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A3_T2.js @@ -6,7 +6,6 @@ info: | The sort function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.sort -es5id: 15.4.4.11_A3_T2 description: If comparefn is not undefined ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js index 23803d8a03..54ea7eee56 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.sort -es5id: 15.4.4.11_A4_T3 description: length = -4294967294 ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A5_T1.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A5_T1.js index 32ddbcd187..ec2de45de3 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A5_T1.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A5_T1.js @@ -4,7 +4,6 @@ /*--- info: Array.sort should not eat exceptions esid: sec-array.prototype.sort -es5id: 15.4.4.11_A5_T1 description: comparefn function throw "error" ---*/ diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A6_T2.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A6_T2.js index 4d26b47013..fa4f3972c4 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A6_T2.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A6_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.sort -es5id: 15.4.4.11_A6_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A7.7.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A7.7.js index 808ef1dbf0..f90acdabdd 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A7.7.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A7.7.js @@ -4,7 +4,6 @@ /*--- info: The sort property of Array can't be used as constructor esid: sec-array.prototype.sort -es5id: 15.4.4.11_A7.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/sort/S15.4.4.11_A8.js b/test/built-ins/Array/prototype/sort/S15.4.4.11_A8.js index bfa49d90ae..fcc6f860ff 100644 --- a/test/built-ins/Array/prototype/sort/S15.4.4.11_A8.js +++ b/test/built-ins/Array/prototype/sort/S15.4.4.11_A8.js @@ -4,7 +4,6 @@ /*--- info: Call the comparefn passing undefined as the this value (step 13b) esid: sec-array.prototype.sort -es5id: 15.4.4.11_A8 description: comparefn tests that its this value is undefined flags: [noStrict] ---*/ diff --git a/test/built-ins/Array/prototype/sort/name.js b/test/built-ins/Array/prototype/sort/name.js index b230f573dc..a1dba0e696 100644 --- a/test/built-ins/Array/prototype/sort/name.js +++ b/test/built-ins/Array/prototype/sort/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.sort -es6id: 22.1.3.24 description: > Array.prototype.sort.name is "sort". info: | diff --git a/test/built-ins/Array/prototype/splice/15.4.4.12-9-a-1.js b/test/built-ins/Array/prototype/splice/15.4.4.12-9-a-1.js index 0e0d144a6a..dd4b42474a 100644 --- a/test/built-ins/Array/prototype/splice/15.4.4.12-9-a-1.js +++ b/test/built-ins/Array/prototype/splice/15.4.4.12-9-a-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.splice -es5id: 15.4.4.12-9-a-1 description: > Array.prototype.splice - 'from' is the result of ToString(actualStart+k) in an Array diff --git a/test/built-ins/Array/prototype/splice/15.4.4.12-9-c-ii-1.js b/test/built-ins/Array/prototype/splice/15.4.4.12-9-c-ii-1.js index ab59bcf6f5..bbc7b8c69a 100644 --- a/test/built-ins/Array/prototype/splice/15.4.4.12-9-c-ii-1.js +++ b/test/built-ins/Array/prototype/splice/15.4.4.12-9-c-ii-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.splice -es5id: 15.4.4.12-9-c-ii-1 description: > Array.prototype.splice will splice an array even when Array.prototype has index '0' set to read-only and 'fromPresent' diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T1.js index 5cdd55a4ee..bd0412309a 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T1.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T1 description: length > deleteCount > start = 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T2.js index 3685147d67..28b445c9b9 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T2.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T2 description: length > deleteCount > start = 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T3.js index 713f6a0416..ea31a76fa1 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T3.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T3 description: length = deleteCount > start = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T4.js index 0eb829e794..b5815eb943 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T4.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T4 description: length > deleteCount > start > 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T5.js index 652524bd11..0ed8b0cebd 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T5.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T5 description: deleteCount > length > start = 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T6.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T6.js index 91253b80f1..30083ef5f7 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T6.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.1_T6.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.1_T6 description: length = deleteCount > start > 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T1.js index 0db991b3ec..a437a3a3cc 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T1.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.2_T1 description: -length = start < deleteCount < 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T2.js index 0be3d2398c..4742d80444 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T2.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.2_T2 description: -length < start = deleteCount < 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T3.js index 89e1ee2b5b..c53fab465f 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T3.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.2_T3 description: -length = start < deleteCount < 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T4.js index 02e2dbea84..b4d64d5bcf 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T4.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.2_T4 description: -length < start = deleteCount < 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T5.js index ed8efafe78..446824268e 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.2_T5.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.2_T5 description: start < -length < deleteCount < 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T1.js index 66c3d55e21..78d26ea91a 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T1.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.3_T1 description: -length < deleteCount < start = 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T2.js index 089a2ce8c3..cb9a68136a 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T2.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.3_T2 description: -length = -start < deleteCount < 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T3.js index 5c56b995ac..da08ba9421 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T3.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.3_T3 description: -length < deleteCount < start = 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T4.js index 828e21cbbb..0ab61865b0 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T4.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.3_T4 description: -length = -start < deleteCount < 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T5.js index cd2ccab2ca..d01e4e8884 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.3_T5.js @@ -6,7 +6,6 @@ info: | If start is positive, use min(start, length). If deleteCount is negative, use 0 esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.3_T5 description: -start < -length < deleteCount < 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T1.js index 9b4cd2228c..09ebea8a47 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T1.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T1 description: length = -start > deleteCount > 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T2.js index d531be2ee1..e93a5377ce 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T2.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T2 description: length = -start > deleteCount > 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T3.js index 318d33a440..fe3c2799e2 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T3.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T3 description: -start > length = deleteCount > 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T4.js index 9c2e3c5798..db2214f853 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T4.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T4 description: length > -start = deleteCount > 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T5.js index 4d051f44c3..d2de96329e 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T5.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T5 description: -start > deleteCount > length > 0, itemCount = 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T6.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T6.js index 779089de14..71f6c11888 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T6.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.4_T6.js @@ -6,7 +6,6 @@ info: | If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.4_T6 description: length = deleteCount > -start > 0, itemCount > 0 ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T1.js index 046f111f8c..3e73c86e84 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T1.js @@ -4,7 +4,6 @@ /*--- info: Splice with undefined arguments esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.5_T1 description: start === undefined, end === undefined ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T2.js index 4741352b58..8929eba6a4 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A1.5_T2.js @@ -4,7 +4,6 @@ /*--- info: Splice with undefined arguments esid: sec-array.prototype.splice -es5id: 15.4.4.12_A1.5_T2 description: end === undefined ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T1.js index 2e66e7f34b..99eceb344b 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.1_T1 description: start is not integer ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T2.js index 94ef139720..fc8faa5869 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.1_T2 description: start = NaN ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T3.js index eaf3c07a1b..ed4e15b461 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T3.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.1_T3 description: start = Infinity ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T4.js index 939454e488..d095c6e089 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T4.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.1_T4 description: start = -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T5.js index 9cf978a586..35f96b7571 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.1_T5.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from start esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.1_T5 description: ToInteger use ToNumber ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T1.js index 4212e9e1f1..ded18ffb1f 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T1.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from deleteCount esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.2_T1 description: deleteCount is not integer ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T2.js index cbe0fbb78f..85af8e84ae 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T2.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from deleteCount esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.2_T2 description: deleteCount = NaN ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T3.js index 1a2e4fb1e7..d980f40a64 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T3.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from deleteCount esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.2_T3 description: deleteCount = Infinity ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T4.js index d0ec317ce6..b67fcc2238 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T4.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from deleteCount esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.2_T4 description: deleteCount = -Infinity ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T5.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T5.js index 911ee8defc..6dfb4afa98 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T5.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2.2_T5.js @@ -4,7 +4,6 @@ /*--- info: Operator use ToInteger from deleteCount esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2.2_T5 description: ToInteger use ToNumber ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T1.js index 53135fec31..cd601ab68b 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T1.js @@ -6,7 +6,6 @@ info: | The splice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2_T1 description: > If start is positive, use min(start, length). If deleteCount is positive, use min(deleteCount, length - start) diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T2.js index d0c6aed9b1..43f47c48ce 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T2.js @@ -6,7 +6,6 @@ info: | The splice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2_T2 description: > If start is negative, use max(start + length, 0). If deleteCount is negative, use 0 diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T3.js index 4b6fdb4b94..b8725b515e 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T3.js @@ -6,7 +6,6 @@ info: | The splice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2_T3 description: > If start is positive, use min(start, length). If deleteCount is negative, use 0 diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T4.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T4.js index 1127a7cb64..10013ceb6b 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T4.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A2_T4.js @@ -6,7 +6,6 @@ info: | The splice function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.splice -es5id: 15.4.4.12_A2_T4 description: > If start is negative, use max(start + length, 0). If deleteCount is positive, use min(deleteCount, length - start) diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js index bf7b3a654e..f97cd22567 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.splice -es5id: 15.4.4.12_A3_T1 description: length is arbitrarily ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T3.js index 309de2f1f4..fa386c9259 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T3.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.splice -es5id: 15.4.4.12_A3_T3 description: length is arbitrarily ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T1.js index 7754dc3f4f..79f2d854ff 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.splice -es5id: 15.4.4.12_A4_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T2.js index 50cf6d031c..a30c34d8a3 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.splice -es5id: 15.4.4.12_A4_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js index 423c669730..73d4d98886 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]] from not an inherited property" esid: sec-array.prototype.splice -es5id: 15.4.4.12_A4_T3 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A5.7.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A5.7.js index 3952ff6355..59722ce85e 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A5.7.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The splice property of Array can't be used as constructor esid: sec-array.prototype.splice -es5id: 15.4.4.12_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js index cae54c1da1..20750be087 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js @@ -4,7 +4,6 @@ /*--- info: Array.prototype.splice sets `length` on `this` esid: sec-array.prototype.splice -es5id: 15.4.4.12_A6.1_T1 description: Array.prototype.splice sets `length` on Array ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T2.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T2.js index cf53a82359..5a43405b60 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T2.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T2.js @@ -4,7 +4,6 @@ /*--- info: Array.prototype.splice sets `length` on `this` esid: sec-array.prototype.splice -es5id: 15.4.4.12_A6.1_T2 description: Array.prototype.splice throws if `length` is read-only ---*/ diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T3.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T3.js index f42c6f00fd..e39f17ad8c 100644 --- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T3.js +++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T3.js @@ -4,7 +4,6 @@ /*--- info: Array.prototype.splice sets `length` on `this` esid: sec-array.prototype.splice -es5id: 15.4.4.12_A6.1_T3 description: Array.prototype.splice throws if `length` is read-only ---*/ diff --git a/test/built-ins/Array/prototype/splice/called_with_one_argument.js b/test/built-ins/Array/prototype/splice/called_with_one_argument.js index 9c20e194b6..adea96e541 100644 --- a/test/built-ins/Array/prototype/splice/called_with_one_argument.js +++ b/test/built-ins/Array/prototype/splice/called_with_one_argument.js @@ -10,7 +10,6 @@ info: | 9. Else if the number of actual arguments is 1, then a. Let insertCount be 0. b. Let actualDeleteCount be len – actualStart. -es6id: 22.1.3.25 esid: sec-array.prototype.splice ---*/ diff --git a/test/built-ins/Array/prototype/splice/create-ctor-non-object.js b/test/built-ins/Array/prototype/splice/create-ctor-non-object.js index 5c96cae9fc..68c1ddf346 100644 --- a/test/built-ins/Array/prototype/splice/create-ctor-non-object.js +++ b/test/built-ins/Array/prototype/splice/create-ctor-non-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: > Behavior when `constructor` property is neither an Object nor undefined diff --git a/test/built-ins/Array/prototype/splice/create-ctor-poisoned.js b/test/built-ins/Array/prototype/splice/create-ctor-poisoned.js index 0fceaffa89..69121b8db9 100644 --- a/test/built-ins/Array/prototype/splice/create-ctor-poisoned.js +++ b/test/built-ins/Array/prototype/splice/create-ctor-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Abrupt completion from `constructor` property access info: | diff --git a/test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js b/test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js index eca772858c..1f482bbf97 100644 --- a/test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js +++ b/test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Abrupt completion from creating a new array info: | diff --git a/test/built-ins/Array/prototype/splice/create-non-array.js b/test/built-ins/Array/prototype/splice/create-non-array.js index 153e484622..32b12f9910 100644 --- a/test/built-ins/Array/prototype/splice/create-non-array.js +++ b/test/built-ins/Array/prototype/splice/create-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Constructor is ignored for non-Array values info: | diff --git a/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-array.js index baec4557bf..b49c792d53 100644 --- a/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.25 esid: sec-array.prototype.splice description: Prefer Array constructor of current realm record info: | diff --git a/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js b/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js index 86888038ca..f28c77c1f0 100644 --- a/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js +++ b/test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.25 esid: sec-array.prototype.splice description: Accept non-Array constructors from other realms info: | diff --git a/test/built-ins/Array/prototype/splice/create-proxy.js b/test/built-ins/Array/prototype/splice/create-proxy.js index 8fea87e34a..af2ed1d599 100644 --- a/test/built-ins/Array/prototype/splice/create-proxy.js +++ b/test/built-ins/Array/prototype/splice/create-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.25 esid: sec-array.prototype.splice description: Species constructor of a Proxy object whose target is an array info: | diff --git a/test/built-ins/Array/prototype/splice/create-revoked-proxy.js b/test/built-ins/Array/prototype/splice/create-revoked-proxy.js index dfcd5e8d2e..68b20ee1cf 100644 --- a/test/built-ins/Array/prototype/splice/create-revoked-proxy.js +++ b/test/built-ins/Array/prototype/splice/create-revoked-proxy.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Abrupt completion from constructor that is a revoked Proxy object info: | diff --git a/test/built-ins/Array/prototype/splice/create-species-abrupt.js b/test/built-ins/Array/prototype/splice/create-species-abrupt.js index efa51d4820..643ef7ab82 100644 --- a/test/built-ins/Array/prototype/splice/create-species-abrupt.js +++ b/test/built-ins/Array/prototype/splice/create-species-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Species constructor returns an abrupt completion info: | diff --git a/test/built-ins/Array/prototype/splice/create-species-neg-zero.js b/test/built-ins/Array/prototype/splice/create-species-neg-zero.js index f6a0d6f064..040b2834bd 100644 --- a/test/built-ins/Array/prototype/splice/create-species-neg-zero.js +++ b/test/built-ins/Array/prototype/splice/create-species-neg-zero.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: The value `-0` is converted to `0` info: | diff --git a/test/built-ins/Array/prototype/splice/create-species-non-ctor.js b/test/built-ins/Array/prototype/splice/create-species-non-ctor.js index ebc5b1a349..0d5ff35bfe 100644 --- a/test/built-ins/Array/prototype/splice/create-species-non-ctor.js +++ b/test/built-ins/Array/prototype/splice/create-species-non-ctor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: > Behavior when the @@species attribute is a non-constructor object diff --git a/test/built-ins/Array/prototype/splice/create-species-null.js b/test/built-ins/Array/prototype/splice/create-species-null.js index eb85d10e05..4f821e8543 100644 --- a/test/built-ins/Array/prototype/splice/create-species-null.js +++ b/test/built-ins/Array/prototype/splice/create-species-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: > A null value for the @@species constructor is interpreted as `undefined` diff --git a/test/built-ins/Array/prototype/splice/create-species-poisoned.js b/test/built-ins/Array/prototype/splice/create-species-poisoned.js index 54f725bbd7..e7d58f1fcb 100644 --- a/test/built-ins/Array/prototype/splice/create-species-poisoned.js +++ b/test/built-ins/Array/prototype/splice/create-species-poisoned.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Abrupt completion from `@@species` property access info: | diff --git a/test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js b/test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js index 055d95713b..fb3ceca631 100644 --- a/test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js +++ b/test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/splice/create-species-undef.js b/test/built-ins/Array/prototype/splice/create-species-undef.js index 3b70b66ecd..814edff5c4 100644 --- a/test/built-ins/Array/prototype/splice/create-species-undef.js +++ b/test/built-ins/Array/prototype/splice/create-species-undef.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: > An undefined value for the @@species constructor triggers the creation of diff --git a/test/built-ins/Array/prototype/splice/create-species.js b/test/built-ins/Array/prototype/splice/create-species.js index f30e28f282..218c5bc5d4 100644 --- a/test/built-ins/Array/prototype/splice/create-species.js +++ b/test/built-ins/Array/prototype/splice/create-species.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.26 esid: sec-array.prototype.splice description: Species constructor is used to create a new instance info: | diff --git a/test/built-ins/Array/prototype/splice/name.js b/test/built-ins/Array/prototype/splice/name.js index e59f92cf0d..7d102ad0d2 100644 --- a/test/built-ins/Array/prototype/splice/name.js +++ b/test/built-ins/Array/prototype/splice/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.splice -es6id: 22.1.3.25 description: > Array.prototype.splice.name is "splice". info: | diff --git a/test/built-ins/Array/prototype/splice/set_length_no_args.js b/test/built-ins/Array/prototype/splice/set_length_no_args.js index 25dbc37efb..8005116057 100644 --- a/test/built-ins/Array/prototype/splice/set_length_no_args.js +++ b/test/built-ins/Array/prototype/splice/set_length_no_args.js @@ -10,8 +10,6 @@ info: | 24. Let setStatus be Set(O, "length", len – actualDeleteCount + itemCount, true). 25. ReturnIfAbrupt(setStatus). esid: sec-array.prototype.splice -es5id: 15.4.4.12 -es6id: 22.1.3.25 ---*/ var getCallCount = 0, diff --git a/test/built-ins/Array/prototype/toLocaleString/name.js b/test/built-ins/Array/prototype/toLocaleString/name.js index 3bd7c7ca35..effd39260d 100644 --- a/test/built-ins/Array/prototype/toLocaleString/name.js +++ b/test/built-ins/Array/prototype/toLocaleString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.tolocalestring -es6id: 22.1.3.26 description: > Array.prototype.toLocaleString.name is "toLocaleString". info: | diff --git a/test/built-ins/Array/prototype/toString/length.js b/test/built-ins/Array/prototype/toString/length.js index 83a5cc0add..2322313389 100644 --- a/test/built-ins/Array/prototype/toString/length.js +++ b/test/built-ins/Array/prototype/toString/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.3.27 esid: sec-array.prototype.tostring description: > Array.prototype.toString.length is 0. diff --git a/test/built-ins/Array/prototype/toString/name.js b/test/built-ins/Array/prototype/toString/name.js index 6b683eed11..62e92865d5 100644 --- a/test/built-ins/Array/prototype/toString/name.js +++ b/test/built-ins/Array/prototype/toString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.tostring -es6id: 22.1.3.27 description: > Array.prototype.toString.name is "toString". info: | diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T1.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T1.js index b38a9d688f..bf498bc781 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T1.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T1.js @@ -7,7 +7,6 @@ info: | their order within the array is the same as the order in which they appear in the argument list esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A1_T1 description: Checking case when unsift is given no arguments or one argument ---*/ diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T2.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T2.js index 9f6f81f64f..42b9d7e9d1 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T2.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A1_T2.js @@ -7,7 +7,6 @@ info: | their order within the array is the same as the order in which they appear in the argument list esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A1_T2 description: Checking case when unsift is given many arguments ---*/ diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T1.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T1.js index f45be1170a..273ea8d786 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T1.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T1.js @@ -6,7 +6,6 @@ info: | The unshift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A2_T1 description: > The arguments are prepended to the start of the array, such that their order within the array is the same as the order in which diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T2.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T2.js index d9a588918d..563dd82532 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T2.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T2.js @@ -6,7 +6,6 @@ info: | The unshift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A2_T2 description: > The arguments are prepended to the start of the array, such that their order within the array is the same as the order in which diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T3.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T3.js index 979bc566b2..559f5161c9 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T3.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A2_T3.js @@ -6,7 +6,6 @@ info: | The unshift function is intentionally generic. It does not require that its this value be an Array object esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A2_T3 description: > Operator use ToNumber from length. If Type(value) is Object, evaluate ToPrimitive(value, Number) diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A3_T2.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A3_T2.js index fcbbe10dd7..761406941a 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A3_T2.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A3_T2.js @@ -4,7 +4,6 @@ /*--- info: Check ToLength(length) for non Array objects esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A3_T2 description: length = -4294967295 ---*/ diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T1.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T1.js index 0235e42bbb..c717ec658b 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T1.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T1.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A4_T1 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T2.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T2.js index b12b2daa36..e2435d6787 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T2.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A4_T2.js @@ -4,7 +4,6 @@ /*--- info: "[[Get]], [[Delete]] from not an inherited property" esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A4_T2 description: > [[Prototype]] of Array instance is Array.prototype, [[Prototype] of Array.prototype is Object.prototype diff --git a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A5.7.js b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A5.7.js index a36207756f..40e716969a 100644 --- a/test/built-ins/Array/prototype/unshift/S15.4.4.13_A5.7.js +++ b/test/built-ins/Array/prototype/unshift/S15.4.4.13_A5.7.js @@ -4,7 +4,6 @@ /*--- info: The unshift property of Array can't be used as constructor esid: sec-array.prototype.unshift -es5id: 15.4.4.13_A5.7 description: > If property does not implement the internal [[Construct]] method, throw a TypeError exception diff --git a/test/built-ins/Array/prototype/unshift/name.js b/test/built-ins/Array/prototype/unshift/name.js index 71b025233d..e912248e95 100644 --- a/test/built-ins/Array/prototype/unshift/name.js +++ b/test/built-ins/Array/prototype/unshift/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-array.prototype.unshift -es6id: 22.1.3.28 description: > Array.prototype.unshift.name is "unshift". info: | diff --git a/test/built-ins/Array/prototype/values/iteration-mutable.js b/test/built-ins/Array/prototype/values/iteration-mutable.js index 74142c4b59..4c492076e3 100644 --- a/test/built-ins/Array/prototype/values/iteration-mutable.js +++ b/test/built-ins/Array/prototype/values/iteration-mutable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: > New items in the array are accessible via iteration until iterator is "done". info: | diff --git a/test/built-ins/Array/prototype/values/iteration.js b/test/built-ins/Array/prototype/values/iteration.js index 8b821eae1e..1a77b7212b 100644 --- a/test/built-ins/Array/prototype/values/iteration.js +++ b/test/built-ins/Array/prototype/values/iteration.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: > The return is a valid iterator with the array's numeric properties. info: | diff --git a/test/built-ins/Array/prototype/values/length.js b/test/built-ins/Array/prototype/values/length.js index 8fc7d06e16..a641178726 100644 --- a/test/built-ins/Array/prototype/values/length.js +++ b/test/built-ins/Array/prototype/values/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: Array.prototype.values `length` property info: | ES6 Section 17: diff --git a/test/built-ins/Array/prototype/values/name.js b/test/built-ins/Array/prototype/values/name.js index 5da29c9667..0618b50813 100644 --- a/test/built-ins/Array/prototype/values/name.js +++ b/test/built-ins/Array/prototype/values/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: Array.prototype.values `name` property info: | ES6 Section 17: diff --git a/test/built-ins/Array/prototype/values/prop-desc.js b/test/built-ins/Array/prototype/values/prop-desc.js index c139311d58..2dedef67b7 100644 --- a/test/built-ins/Array/prototype/values/prop-desc.js +++ b/test/built-ins/Array/prototype/values/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: Array.prototype.values property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Array/prototype/values/returns-iterator-from-object.js b/test/built-ins/Array/prototype/values/returns-iterator-from-object.js index 65ecc835ab..eedd4dacd1 100644 --- a/test/built-ins/Array/prototype/values/returns-iterator-from-object.js +++ b/test/built-ins/Array/prototype/values/returns-iterator-from-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: > Creates an iterator from a custom object. info: | diff --git a/test/built-ins/Array/prototype/values/returns-iterator.js b/test/built-ins/Array/prototype/values/returns-iterator.js index ea3031f3a2..37e0313d89 100644 --- a/test/built-ins/Array/prototype/values/returns-iterator.js +++ b/test/built-ins/Array/prototype/values/returns-iterator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: > The method should return an Iterator instance. info: | diff --git a/test/built-ins/Array/prototype/values/this-val-non-obj-coercible.js b/test/built-ins/Array/prototype/values/this-val-non-obj-coercible.js index af1882c693..e46405c459 100644 --- a/test/built-ins/Array/prototype/values/this-val-non-obj-coercible.js +++ b/test/built-ins/Array/prototype/values/this-val-non-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.values -es6id: 22.1.3.29 description: > `this` value not object coercible info: | diff --git a/test/built-ins/ArrayBuffer/Symbol.species/length.js b/test/built-ins/ArrayBuffer/Symbol.species/length.js index fd2593f598..9443da03b5 100644 --- a/test/built-ins/ArrayBuffer/Symbol.species/length.js +++ b/test/built-ins/ArrayBuffer/Symbol.species/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-arraybuffer-@@species -es6id: 24.1.3.3 description: > get ArrayBuffer [ @@species ].length is 0. info: | diff --git a/test/built-ins/ArrayBuffer/Symbol.species/return-value.js b/test/built-ins/ArrayBuffer/Symbol.species/return-value.js index 139bd7353c..e4065dd4c4 100644 --- a/test/built-ins/ArrayBuffer/Symbol.species/return-value.js +++ b/test/built-ins/ArrayBuffer/Symbol.species/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-arraybuffer-@@species -es6id: 24.1.3.3 description: Return value of @@species accessor method info: | 1. Return the this value. diff --git a/test/built-ins/ArrayBuffer/Symbol.species/symbol-species-name.js b/test/built-ins/ArrayBuffer/Symbol.species/symbol-species-name.js index 1fcefe05f7..87e1351189 100644 --- a/test/built-ins/ArrayBuffer/Symbol.species/symbol-species-name.js +++ b/test/built-ins/ArrayBuffer/Symbol.species/symbol-species-name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-arraybuffer-@@species -es6id: 24.1.3.3 description: > ArrayBuffer[Symbol.species] accessor property get name info: | diff --git a/test/built-ins/ArrayBuffer/Symbol.species/symbol-species.js b/test/built-ins/ArrayBuffer/Symbol.species/symbol-species.js index 170054fff7..5c0beaa5e4 100644 --- a/test/built-ins/ArrayBuffer/Symbol.species/symbol-species.js +++ b/test/built-ins/ArrayBuffer/Symbol.species/symbol-species.js @@ -5,7 +5,6 @@ info: | ArrayBuffer has a property at `Symbol.species` esid: sec-get-arraybuffer-@@species -es6id: 24.1.3.3 author: Sam Mikes description: ArrayBuffer[Symbol.species] exists per spec features: [ArrayBuffer, Symbol.species] diff --git a/test/built-ins/ArrayBuffer/allocation-limit.js b/test/built-ins/ArrayBuffer/allocation-limit.js index dd4d89d178..8735f9c062 100644 --- a/test/built-ins/ArrayBuffer/allocation-limit.js +++ b/test/built-ins/ArrayBuffer/allocation-limit.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > Throws a RangeError if requested Data Block is too large. info: | diff --git a/test/built-ins/ArrayBuffer/data-allocation-after-object-creation.js b/test/built-ins/ArrayBuffer/data-allocation-after-object-creation.js index e53c92b1c5..e2c97fb18e 100644 --- a/test/built-ins/ArrayBuffer/data-allocation-after-object-creation.js +++ b/test/built-ins/ArrayBuffer/data-allocation-after-object-creation.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > The new ArrayBuffer instance is created prior to allocating the Data Block. info: | diff --git a/test/built-ins/ArrayBuffer/init-zero.js b/test/built-ins/ArrayBuffer/init-zero.js index 734e5d8fed..6aff6f6e88 100644 --- a/test/built-ins/ArrayBuffer/init-zero.js +++ b/test/built-ins/ArrayBuffer/init-zero.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-arraybuffer-length -es6id: 24.1.1.1 description: All bytes are initialized to zero info: | [...] diff --git a/test/built-ins/ArrayBuffer/isView/length.js b/test/built-ins/ArrayBuffer/isView/length.js index 89b75c3f9b..2c2408c1d2 100644 --- a/test/built-ins/ArrayBuffer/isView/length.js +++ b/test/built-ins/ArrayBuffer/isView/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.isview -es6id: 24.1.3.1 description: > ArrayBuffer.isView.length is 1. info: | diff --git a/test/built-ins/ArrayBuffer/isView/name.js b/test/built-ins/ArrayBuffer/isView/name.js index 7b20917537..de8d7902f3 100644 --- a/test/built-ins/ArrayBuffer/isView/name.js +++ b/test/built-ins/ArrayBuffer/isView/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.isview -es6id: 24.1.3.1 description: > ArrayBuffer.isView.name is "isView". info: | diff --git a/test/built-ins/ArrayBuffer/length-is-too-large-throws.js b/test/built-ins/ArrayBuffer/length-is-too-large-throws.js index 35dc6004a4..63c06dc52d 100644 --- a/test/built-ins/ArrayBuffer/length-is-too-large-throws.js +++ b/test/built-ins/ArrayBuffer/length-is-too-large-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.2.1 esid: sec-arraybuffer-length description: > Throws a RangeError if length >= 2 ** 53 diff --git a/test/built-ins/ArrayBuffer/newtarget-prototype-is-not-object.js b/test/built-ins/ArrayBuffer/newtarget-prototype-is-not-object.js index 2e17f26bc2..5168bb7716 100644 --- a/test/built-ins/ArrayBuffer/newtarget-prototype-is-not-object.js +++ b/test/built-ins/ArrayBuffer/newtarget-prototype-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > [[Prototype]] defaults to %ArrayBufferPrototype% if NewTarget.prototype is not an object. info: | diff --git a/test/built-ins/ArrayBuffer/proto-from-ctor-realm.js b/test/built-ins/ArrayBuffer/proto-from-ctor-realm.js index a168d1bcb0..2906d0c2b3 100644 --- a/test/built-ins/ArrayBuffer/proto-from-ctor-realm.js +++ b/test/built-ins/ArrayBuffer/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-arraybuffer-length -es6id: 24.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/ArrayBuffer/prototype-from-newtarget.js b/test/built-ins/ArrayBuffer/prototype-from-newtarget.js index 0d6c097d7f..1f99799cb2 100644 --- a/test/built-ins/ArrayBuffer/prototype-from-newtarget.js +++ b/test/built-ins/ArrayBuffer/prototype-from-newtarget.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > The [[Prototype]] internal slot is computed from NewTarget. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/Symbol.toStringTag.js b/test/built-ins/ArrayBuffer/prototype/Symbol.toStringTag.js index 1c68ee898c..26c877b4bc 100644 --- a/test/built-ins/ArrayBuffer/prototype/Symbol.toStringTag.js +++ b/test/built-ins/ArrayBuffer/prototype/Symbol.toStringTag.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-arraybuffer.prototype-@@tostringtag -es6id: 24.1.4.4 description: > `Symbol.toStringTag` property descriptor info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js b/test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js index 6a80c08a22..d5979c6dab 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: Returns 0 if the buffer is detached info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-accessor.js b/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-accessor.js index 69727c7d49..b0f8450283 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-accessor.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-accessor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: Requires this value to have a [[ArrayBufferData]] internal slot info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-func.js b/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-func.js index 94a4c503c0..bac56688d4 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-func.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/invoked-as-func.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: Throws a TypeError exception when invoked as a function info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/length.js b/test/built-ins/ArrayBuffer/prototype/byteLength/length.js index 3bb80ff413..8c0d4e50d8 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/length.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-arraybuffer.prototype.bytelength -es6id: 24.1.4.1 description: > get ArrayBuffer.prototype.byteLength.length is 0. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/name.js b/test/built-ins/ArrayBuffer/prototype/byteLength/name.js index 99cf497fe9..76e7708705 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/name.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-arraybuffer.prototype.bytelength -es6id: 24.1.4.1 description: > get ArrayBuffer.prototype.byteLength diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/prop-desc.js b/test/built-ins/ArrayBuffer/prototype/byteLength/prop-desc.js index 068d2ec241..eb92fa0b5e 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/prop-desc.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/prop-desc.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: > "byteLength" property of ArrayBuffer.prototype diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/return-bytelength.js b/test/built-ins/ArrayBuffer/prototype/byteLength/return-bytelength.js index 9658fcbdce..acac57fce8 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/return-bytelength.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/return-bytelength.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: Return value from [[ByteLength]] internal slot info: | diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/this-has-no-typedarrayname-internal.js b/test/built-ins/ArrayBuffer/prototype/byteLength/this-has-no-typedarrayname-internal.js index 4966bc1d20..d9c84b51ee 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/this-has-no-typedarrayname-internal.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/this-has-no-typedarrayname-internal.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: > Throws a TypeError exception when `this` does not have a [[ArrayBufferData]] diff --git a/test/built-ins/ArrayBuffer/prototype/byteLength/this-is-not-object.js b/test/built-ins/ArrayBuffer/prototype/byteLength/this-is-not-object.js index ade5d83409..3cc375baab 100644 --- a/test/built-ins/ArrayBuffer/prototype/byteLength/this-is-not-object.js +++ b/test/built-ins/ArrayBuffer/prototype/byteLength/this-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.1.4.1 esid: sec-get-arraybuffer.prototype.bytelength description: Throws a TypeError exception when `this` is not Object info: | diff --git a/test/built-ins/ArrayBuffer/prototype/constructor.js b/test/built-ins/ArrayBuffer/prototype/constructor.js index 66abd566dc..89c548012c 100644 --- a/test/built-ins/ArrayBuffer/prototype/constructor.js +++ b/test/built-ins/ArrayBuffer/prototype/constructor.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.constructor -es6id: 24.1.4.2 description: > The `ArrayBuffer.prototype.constructor` property descriptor. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-arraybuffer-object.js b/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-arraybuffer-object.js index 8f33c607e5..9ca3677d97 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-arraybuffer-object.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-arraybuffer-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if `this` does not have an [[ArrayBufferData]] internal slot. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-object.js b/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-object.js index c6c1cc48e4..9772ee4857 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-object.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/context-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/descriptor.js b/test/built-ins/ArrayBuffer/prototype/slice/descriptor.js index b23e9d9788..02c179d63c 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/descriptor.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/descriptor.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ArrayBuffer.prototype.slice has default data property attributes. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-absent.js b/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-absent.js index 8a53b3aebc..e1ba4d7bc4 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-absent.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-absent.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `end` index defaults to [[ArrayBufferByteLength]] if absent. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js b/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js index 383aaeb938..9aa8c06edb 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `end` index defaults to [[ArrayBufferByteLength]] if undefined. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js b/test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js index 5138b910da..b8186d80cf 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Large `end` index is clamped to [[ArrayBufferByteLength]]. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/extensible.js b/test/built-ins/ArrayBuffer/prototype/slice/extensible.js index eca3f03f5b..f0ab5f9d09 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/extensible.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/extensible.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ArrayBuffer.prototype.slice is extensible. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/length.js b/test/built-ins/ArrayBuffer/prototype/slice/length.js index d1d9fcc878..3c09fe0ae6 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/length.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ArrayBuffer.prototype.slice.length is 2. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/name.js b/test/built-ins/ArrayBuffer/prototype/slice/name.js index 87c8d4fc0b..475b909faa 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/name.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ArrayBuffer.prototype.slice.name is "slice". info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/negative-end.js b/test/built-ins/ArrayBuffer/prototype/slice/negative-end.js index bafdd8a4fc..c37e7a0485 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/negative-end.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/negative-end.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Negative `end` index is relative to [[ArrayBufferByteLength]]. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/negative-start.js b/test/built-ins/ArrayBuffer/prototype/slice/negative-start.js index afc33ffff0..879974f428 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/negative-start.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/negative-start.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Negative `start` index is relative to [[ArrayBufferByteLength]]. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/nonconstructor.js b/test/built-ins/ArrayBuffer/prototype/slice/nonconstructor.js index 83c2ba3191..fca1202e61 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/nonconstructor.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/nonconstructor.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ArrayBuffer.prototype.slice is not a constructor function. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/number-conversion.js b/test/built-ins/ArrayBuffer/prototype/slice/number-conversion.js index 17a8cea0d5..f22ed609fd 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/number-conversion.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/number-conversion.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > ToInteger(start) is called before ToInteger(end). info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-not-object.js b/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-not-object.js index 94cf973cec..41bc253bc1 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-not-object.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws TypeError if `constructor` property is not an object. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js b/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js index 21fd5f35d0..058ee2628c 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Uses default constructor is `constructor` property is undefined. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-constructor.js b/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-constructor.js index 707a12acb0..be3be5e116 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-constructor.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-constructor.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if species constructor is not a constructor function. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-object.js b/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-object.js index 8a751cd224..dffb24e24e 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-object.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if species constructor is not an object. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js b/test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js index eaf031b8cf..602d927e1e 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Uses default constructor is species constructor is null. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js b/test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js index 374b215ec9..210e7f420f 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Uses default constructor is species constructor is undefined. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js index de2860457e..1eb4ed555b 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Does not throw TypeError if new ArrayBuffer is too large. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js index 0cea2fe07f..f0ea256d4e 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if new object is not an ArrayBuffer instance. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-same-arraybuffer.js b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-same-arraybuffer.js index 216bd7407f..bc10f6759d 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-same-arraybuffer.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-same-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if species constructor returns `this` value. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-smaller-arraybuffer.js b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-smaller-arraybuffer.js index 8f19c59471..a02e129878 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species-returns-smaller-arraybuffer.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species-returns-smaller-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Throws a TypeError if new ArrayBuffer is too small. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/species.js b/test/built-ins/ArrayBuffer/prototype/slice/species.js index 02f492f224..89362b7e80 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/species.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/species.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > New ArrayBuffer instance is created from SpeciesConstructor. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js b/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js index 4118dfb1c9..a5bff6879c 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `start` index defaults to 0 if absent. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-undefined.js b/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-undefined.js index 3594379341..80fe66a264 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-undefined.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/start-default-if-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `start` index defaults to 0 if undefined. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-end.js b/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-end.js index af0ca352ad..defecb7328 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-end.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-end.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Returns zero-length buffer if `start` index exceeds `end` index. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js b/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js index 70e00c7414..666e43a7b0 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > Large `start` index is clamped to [[ArrayBufferByteLength]]. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-end.js b/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-end.js index 54e8ab1fa7..e28ff8ea92 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-end.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-end.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `end` index parameter is converted to an integral numeric value. info: | diff --git a/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-start.js b/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-start.js index 3150213e6a..311d64a531 100644 --- a/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-start.js +++ b/test/built-ins/ArrayBuffer/prototype/slice/tointeger-conversion-start.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer.prototype.slice -es6id: 24.1.4.3 description: > The `start` index parameter is converted to an integral numeric value. info: | diff --git a/test/built-ins/ArrayBuffer/undefined-newtarget-throws.js b/test/built-ins/ArrayBuffer/undefined-newtarget-throws.js index 6f24212ea1..06feaa62ec 100644 --- a/test/built-ins/ArrayBuffer/undefined-newtarget-throws.js +++ b/test/built-ins/ArrayBuffer/undefined-newtarget-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > Throws a TypeError if ArrayBuffer is called as a function. info: | diff --git a/test/built-ins/ArrayBuffer/zero-length.js b/test/built-ins/ArrayBuffer/zero-length.js index 4debf5f22d..834a768aaa 100644 --- a/test/built-ins/ArrayBuffer/zero-length.js +++ b/test/built-ins/ArrayBuffer/zero-length.js @@ -3,7 +3,6 @@ /*--- esid: sec-arraybuffer-length -es6id: 24.1.2.1 description: > The `length` parameter can be zero. info: | diff --git a/test/built-ins/ArrayIteratorPrototype/next/Float32Array.js b/test/built-ins/ArrayIteratorPrototype/next/Float32Array.js index 6984e24762..b26705effd 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Float32Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Float32Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Float64Array.js b/test/built-ins/ArrayIteratorPrototype/next/Float64Array.js index f0173a349f..7eb9ec1386 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Float64Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Float64Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Int16Array.js b/test/built-ins/ArrayIteratorPrototype/next/Int16Array.js index c0008b5ab1..612d790ef6 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Int16Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Int16Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Int32Array.js b/test/built-ins/ArrayIteratorPrototype/next/Int32Array.js index f8a1d4b379..e0bb1aa372 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Int32Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Int32Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Int8Array.js b/test/built-ins/ArrayIteratorPrototype/next/Int8Array.js index d22477e142..414607a268 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Int8Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Int8Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Uint16Array.js b/test/built-ins/ArrayIteratorPrototype/next/Uint16Array.js index ca9baa84d9..54d7239ca8 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Uint16Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Uint16Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Uint32Array.js b/test/built-ins/ArrayIteratorPrototype/next/Uint32Array.js index 28801acb48..ada3f8ee5d 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Uint32Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Uint32Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Uint8Array.js b/test/built-ins/ArrayIteratorPrototype/next/Uint8Array.js index dfb5128c82..4c2f813a4d 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Uint8Array.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Uint8Array.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/Uint8ClampedArray.js b/test/built-ins/ArrayIteratorPrototype/next/Uint8ClampedArray.js index f8098597d9..f5fef7a8d8 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/Uint8ClampedArray.js +++ b/test/built-ins/ArrayIteratorPrototype/next/Uint8ClampedArray.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > Visits each element of the array in order and ceases iteration once all diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-after-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-after-exhaustion.js index 93ad4d39bc..644c63ace0 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-after-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-after-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.7 esid: sec-%arrayiteratorprototype%.next description: > Once exhausted, iterators for mapped arguments exotic objects should not diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-before-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-before-exhaustion.js index b87cde4d33..7a16cb7875 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-before-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-expansion-before-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.7 esid: sec-%arrayiteratorprototype%.next description: > Prior to being exhausted, iterators for mapped arguments exotic objects diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-iteration.js b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-iteration.js index ed94d03360..1985da5e1f 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-iteration.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-iteration.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.7 esid: sec-%arrayiteratorprototype%.next description: > Mapped arguments exotic objects should implement the Array iterator diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-truncation-before-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-truncation-before-exhaustion.js index 6af6427a15..8ddaea1150 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-mapped-truncation-before-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-mapped-truncation-before-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.7 esid: sec-%arrayiteratorprototype%.next description: > Prior to being exhausted, iterators for mapped arguments exotic objects diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-after-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-after-exhaustion.js index 1424c2a198..4ab82410e5 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-after-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-after-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.6 esid: sec-%arrayiteratorprototype%.next description: > Once exhausted, iterators for unmapped arguments exotic objects should not diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-before-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-before-exhaustion.js index 47ab198f80..d10e273578 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-before-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-expansion-before-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.6 esid: sec-%arrayiteratorprototype%.next description: > Prior to being exhausted, iterators for unmapped arguments exotic objects diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-iteration.js b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-iteration.js index 6796859cf8..fb5c94ff95 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-iteration.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-iteration.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.6 esid: sec-%arrayiteratorprototype%.next description: > Unmapped arguments exotic objects should implement the Array iterator diff --git a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-truncation-before-exhaustion.js b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-truncation-before-exhaustion.js index f156b6b2c6..956170a70d 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-truncation-before-exhaustion.js +++ b/test/built-ins/ArrayIteratorPrototype/next/args-unmapped-truncation-before-exhaustion.js @@ -1,7 +1,6 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.4.4.6 esid: sec-%arrayiteratorprototype%.next description: > Prior to being exhausted, iterators for unmapped arguments exotic objects diff --git a/test/built-ins/ArrayIteratorPrototype/next/length.js b/test/built-ins/ArrayIteratorPrototype/next/length.js index 335d3fdbff..69e81cb004 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/length.js +++ b/test/built-ins/ArrayIteratorPrototype/next/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > %ArrayIteratorPrototype%.next.length is 0. diff --git a/test/built-ins/ArrayIteratorPrototype/next/name.js b/test/built-ins/ArrayIteratorPrototype/next/name.js index 8194b8f2e7..01815558bf 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/name.js +++ b/test/built-ins/ArrayIteratorPrototype/next/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next description: > %ArrayIteratorPrototype%.next.name is "next". diff --git a/test/built-ins/ArrayIteratorPrototype/next/non-own-slots.js b/test/built-ins/ArrayIteratorPrototype/next/non-own-slots.js index 0327dc1b6e..99782781a0 100644 --- a/test/built-ins/ArrayIteratorPrototype/next/non-own-slots.js +++ b/test/built-ins/ArrayIteratorPrototype/next/non-own-slots.js @@ -5,7 +5,6 @@ description: > If the `this` value does not have all of the internal slots of an Array Iterator Instance (22.1.5.3), throw a TypeError exception. -es6id: 22.1.5.2.1 esid: sec-%arrayiteratorprototype%.next features: [Symbol.iterator] ---*/ diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T1.js b/test/built-ins/Boolean/S15.6.1.1_A1_T1.js index c19b7eefe5..e0301006f4 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A1_T1.js +++ b/test/built-ins/Boolean/S15.6.1.1_A1_T1.js @@ -6,7 +6,6 @@ info: | Returns a boolean value (not a Boolean object) computed by ToBoolean(value) esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A1_T1 description: > Used values 1, new String("1"), new Object(1) and called without argument diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T2.js b/test/built-ins/Boolean/S15.6.1.1_A1_T2.js index e9dc0bb55b..1f00ef633c 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A1_T2.js +++ b/test/built-ins/Boolean/S15.6.1.1_A1_T2.js @@ -6,7 +6,6 @@ info: | Returns a boolean value (not a Boolean object) computed by ToBoolean(value) esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A1_T2 description: Used various number values as argument ---*/ diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T3.js b/test/built-ins/Boolean/S15.6.1.1_A1_T3.js index ab9b2a1b33..41c3cc5a93 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A1_T3.js +++ b/test/built-ins/Boolean/S15.6.1.1_A1_T3.js @@ -6,7 +6,6 @@ info: | Returns a boolean value (not a Boolean object) computed by ToBoolean(value) esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A1_T3 description: Used various string values as argument ---*/ diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T4.js b/test/built-ins/Boolean/S15.6.1.1_A1_T4.js index 18a8bf587b..915b2c7ac7 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A1_T4.js +++ b/test/built-ins/Boolean/S15.6.1.1_A1_T4.js @@ -6,7 +6,6 @@ info: | Returns a boolean value (not a Boolean object) computed by ToBoolean(value) esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A1_T4 description: Used various undefined values and null as argument ---*/ diff --git a/test/built-ins/Boolean/S15.6.1.1_A1_T5.js b/test/built-ins/Boolean/S15.6.1.1_A1_T5.js index f465fbb22a..6bd24ee450 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A1_T5.js +++ b/test/built-ins/Boolean/S15.6.1.1_A1_T5.js @@ -6,7 +6,6 @@ info: | Returns a boolean value (not a Boolean object) computed by ToBoolean(value) esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A1_T5 description: Used various assigning values to any variable as argument ---*/ diff --git a/test/built-ins/Boolean/S15.6.1.1_A2.js b/test/built-ins/Boolean/S15.6.1.1_A2.js index 6d91cb6d75..86305a6560 100644 --- a/test/built-ins/Boolean/S15.6.1.1_A2.js +++ b/test/built-ins/Boolean/S15.6.1.1_A2.js @@ -4,7 +4,6 @@ /*--- info: Boolean() returns false esid: sec-terms-and-definitions-boolean-value -es5id: 15.6.1.1_A2 description: Call Boolean() and check result ---*/ diff --git a/test/built-ins/Boolean/S15.6.2.1_A1.js b/test/built-ins/Boolean/S15.6.2.1_A1.js index fc5d516d5a..a1192b0ce1 100644 --- a/test/built-ins/Boolean/S15.6.2.1_A1.js +++ b/test/built-ins/Boolean/S15.6.2.1_A1.js @@ -6,7 +6,6 @@ info: | When Boolean is called as part of a new expression it is a constructor: it initialises the newly created object esid: sec-boolean-constructor -es5id: 15.6.2.1_A1 description: Checking type of the newly created object and it value ---*/ diff --git a/test/built-ins/Boolean/S15.6.2.1_A2.js b/test/built-ins/Boolean/S15.6.2.1_A2.js index 47f07a9437..06cc0f187e 100644 --- a/test/built-ins/Boolean/S15.6.2.1_A2.js +++ b/test/built-ins/Boolean/S15.6.2.1_A2.js @@ -7,7 +7,6 @@ info: | is set to the original Boolean prototype object, the one that is the initial value of Boolean.prototype esid: sec-boolean-constructor -es5id: 15.6.2.1_A2 description: Checking prototype property of the newly created object ---*/ diff --git a/test/built-ins/Boolean/S15.6.2.1_A3.js b/test/built-ins/Boolean/S15.6.2.1_A3.js index 34fc7a95f9..40155c7835 100644 --- a/test/built-ins/Boolean/S15.6.2.1_A3.js +++ b/test/built-ins/Boolean/S15.6.2.1_A3.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object is set to ToBoolean(value) esid: sec-boolean-constructor -es5id: 15.6.2.1_A3 description: Checking value of the newly created object ---*/ diff --git a/test/built-ins/Boolean/S15.6.2.1_A4.js b/test/built-ins/Boolean/S15.6.2.1_A4.js index a4e1fa0da0..90c3df4c5b 100644 --- a/test/built-ins/Boolean/S15.6.2.1_A4.js +++ b/test/built-ins/Boolean/S15.6.2.1_A4.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Boolean" esid: sec-boolean-constructor -es5id: 15.6.2.1_A4 description: For testing toString function is used ---*/ diff --git a/test/built-ins/Boolean/S15.6.3_A1.js b/test/built-ins/Boolean/S15.6.3_A1.js index 6d56be832d..a3064ef32d 100644 --- a/test/built-ins/Boolean/S15.6.3_A1.js +++ b/test/built-ins/Boolean/S15.6.3_A1.js @@ -4,7 +4,6 @@ /*--- info: The Boolean constructor has the property "prototype" esid: sec-boolean.prototype -es5id: 15.6.3_A1 description: Checking existence of the property "prototype" ---*/ diff --git a/test/built-ins/Boolean/S15.6.3_A2.js b/test/built-ins/Boolean/S15.6.3_A2.js index afbdbc18f4..34ee302a89 100644 --- a/test/built-ins/Boolean/S15.6.3_A2.js +++ b/test/built-ins/Boolean/S15.6.3_A2.js @@ -6,7 +6,6 @@ info: | The value of the internal [[Prototype]] property of the Boolean constructor is the Function prototype object esid: sec-boolean.prototype -es5id: 15.6.3_A2 description: Checking prototype of the Boolean constructor ---*/ diff --git a/test/built-ins/Boolean/S15.6.3_A3.js b/test/built-ins/Boolean/S15.6.3_A3.js index 5937d38e5c..c046cac966 100644 --- a/test/built-ins/Boolean/S15.6.3_A3.js +++ b/test/built-ins/Boolean/S15.6.3_A3.js @@ -4,7 +4,6 @@ /*--- info: Boolean constructor has length property whose value is 1 esid: sec-boolean.prototype -es5id: 15.6.3_A3 description: Checking Boolean.length property ---*/ diff --git a/test/built-ins/Boolean/S9.2_A1_T1.js b/test/built-ins/Boolean/S9.2_A1_T1.js index 82277c2980..7d20361806 100644 --- a/test/built-ins/Boolean/S9.2_A1_T1.js +++ b/test/built-ins/Boolean/S9.2_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: Result of boolean conversion from undefined value is false esid: sec-toboolean -es5id: 9.2_A1_T1 description: > Undefined, void and others are converted to Boolean by explicit transformation diff --git a/test/built-ins/Boolean/S9.2_A2_T1.js b/test/built-ins/Boolean/S9.2_A2_T1.js index 8c17db9b31..c9a1271e5e 100644 --- a/test/built-ins/Boolean/S9.2_A2_T1.js +++ b/test/built-ins/Boolean/S9.2_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: Result of boolean conversion from null value is false esid: sec-toboolean -es5id: 9.2_A2_T1 description: null convert to Boolean by explicit transformation ---*/ diff --git a/test/built-ins/Boolean/S9.2_A3_T1.js b/test/built-ins/Boolean/S9.2_A3_T1.js index 49607bb1b3..1b6f32e82b 100644 --- a/test/built-ins/Boolean/S9.2_A3_T1.js +++ b/test/built-ins/Boolean/S9.2_A3_T1.js @@ -4,7 +4,6 @@ /*--- info: Result of boolean conversion from boolean value is no conversion esid: sec-toboolean -es5id: 9.2_A3_T1 description: true and false convert to Boolean by explicit transformation ---*/ diff --git a/test/built-ins/Boolean/S9.2_A4_T1.js b/test/built-ins/Boolean/S9.2_A4_T1.js index bcb2c8bb05..b44c85d151 100644 --- a/test/built-ins/Boolean/S9.2_A4_T1.js +++ b/test/built-ins/Boolean/S9.2_A4_T1.js @@ -6,7 +6,6 @@ info: | Result of boolean conversion from number value is false if the argument is +0, -0, or NaN; otherwise, is true esid: sec-toboolean -es5id: 9.2_A4_T1 description: +0, -0 and NaN convert to Boolean by explicit transformation ---*/ diff --git a/test/built-ins/Boolean/S9.2_A4_T3.js b/test/built-ins/Boolean/S9.2_A4_T3.js index 8ece5af3a6..9d1671b87d 100644 --- a/test/built-ins/Boolean/S9.2_A4_T3.js +++ b/test/built-ins/Boolean/S9.2_A4_T3.js @@ -6,7 +6,6 @@ info: | Result of boolean conversion from number value is false if the argument is +0, -0, or NaN; otherwise, is true esid: sec-toboolean -es5id: 9.2_A4_T3 description: > Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY, Number.MAX_VALUE, Number.MIN_VALUE and some numbers convert to diff --git a/test/built-ins/Boolean/S9.2_A5_T1.js b/test/built-ins/Boolean/S9.2_A5_T1.js index 97e8410d3a..df8c8a54b3 100644 --- a/test/built-ins/Boolean/S9.2_A5_T1.js +++ b/test/built-ins/Boolean/S9.2_A5_T1.js @@ -6,7 +6,6 @@ info: | Result of boolean conversion from nonempty string value (length is not zero) is true; from empty String (length is zero) is false esid: sec-toboolean -es5id: 9.2_A5_T1 description: "\"\" is converted to Boolean by explicit transformation" ---*/ diff --git a/test/built-ins/Boolean/S9.2_A5_T3.js b/test/built-ins/Boolean/S9.2_A5_T3.js index 0efb668b3c..26989ff162 100644 --- a/test/built-ins/Boolean/S9.2_A5_T3.js +++ b/test/built-ins/Boolean/S9.2_A5_T3.js @@ -6,7 +6,6 @@ info: | Result of boolean conversion from nonempty string value (length is not zero) is true; from empty String (length is zero) is false esid: sec-toboolean -es5id: 9.2_A5_T3 description: Any nonempty string convert to Boolean by explicit transformation ---*/ diff --git a/test/built-ins/Boolean/S9.2_A6_T1.js b/test/built-ins/Boolean/S9.2_A6_T1.js index 94637951c1..99c7c3893b 100644 --- a/test/built-ins/Boolean/S9.2_A6_T1.js +++ b/test/built-ins/Boolean/S9.2_A6_T1.js @@ -4,7 +4,6 @@ /*--- info: Result of boolean conversion from object is true esid: sec-toboolean -es5id: 9.2_A6_T1 description: Different objects convert to Boolean by explicit transformation ---*/ diff --git a/test/built-ins/Boolean/proto-from-ctor-realm.js b/test/built-ins/Boolean/proto-from-ctor-realm.js index e25652568e..1d5178d2a7 100644 --- a/test/built-ins/Boolean/proto-from-ctor-realm.js +++ b/test/built-ins/Boolean/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-boolean-constructor-boolean-value -es6id: 19.3.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Boolean/prototype/S15.6.3.1_A1.js b/test/built-ins/Boolean/prototype/S15.6.3.1_A1.js index e57c07d189..5f55ea25b2 100644 --- a/test/built-ins/Boolean/prototype/S15.6.3.1_A1.js +++ b/test/built-ins/Boolean/prototype/S15.6.3.1_A1.js @@ -6,7 +6,6 @@ info: | The initial value of Boolean.prototype is the Boolean prototype object esid: sec-boolean.prototype -es5id: 15.6.3.1_A1 description: Checking Boolean.prototype property ---*/ diff --git a/test/built-ins/Boolean/prototype/S15.6.3.1_A2.js b/test/built-ins/Boolean/prototype/S15.6.3.1_A2.js index 54828848eb..bd20f86ce7 100644 --- a/test/built-ins/Boolean/prototype/S15.6.3.1_A2.js +++ b/test/built-ins/Boolean/prototype/S15.6.3.1_A2.js @@ -4,7 +4,6 @@ /*--- info: Boolean.prototype has the attribute ReadOnly esid: sec-boolean.prototype -es5id: 15.6.3.1_A2 description: Checking if varying the Boolean.prototype property fails includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Boolean/prototype/S15.6.3.1_A3.js b/test/built-ins/Boolean/prototype/S15.6.3.1_A3.js index 37f4f723b4..68ee65376b 100644 --- a/test/built-ins/Boolean/prototype/S15.6.3.1_A3.js +++ b/test/built-ins/Boolean/prototype/S15.6.3.1_A3.js @@ -4,7 +4,6 @@ /*--- info: Boolean.prototype has the attribute DontDelete esid: sec-boolean.prototype -es5id: 15.6.3.1_A3 description: Checking if deleting the Boolean.prototype property fails includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js b/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js index 7dc740ee17..bb36667baf 100644 --- a/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js +++ b/test/built-ins/Boolean/prototype/S15.6.3.1_A4.js @@ -4,7 +4,6 @@ /*--- info: Boolean.prototype has the attribute DontEnum esid: sec-boolean.prototype -es5id: 15.6.3.1_A4 description: Checking if enumerating the Boolean.prototype property fails ---*/ diff --git a/test/built-ins/Boolean/prototype/S15.6.4_A1.js b/test/built-ins/Boolean/prototype/S15.6.4_A1.js index d60a6ba6cd..f69be7d987 100644 --- a/test/built-ins/Boolean/prototype/S15.6.4_A1.js +++ b/test/built-ins/Boolean/prototype/S15.6.4_A1.js @@ -5,7 +5,6 @@ info: | The Boolean prototype object is itself a Boolean object (its [[Class]] is "Boolean") whose value is false -es5id: 15.6.4_A1 esid: sec-properties-of-the-boolean-prototype-object description: Checking type and value of Boolean.prototype ---*/ diff --git a/test/built-ins/Boolean/prototype/S15.6.4_A2.js b/test/built-ins/Boolean/prototype/S15.6.4_A2.js index e1b05ca50b..1815554027 100644 --- a/test/built-ins/Boolean/prototype/S15.6.4_A2.js +++ b/test/built-ins/Boolean/prototype/S15.6.4_A2.js @@ -5,7 +5,6 @@ info: | The value of the internal [[Prototype]] property of the Boolean prototype object is the Object prototype object -es5id: 15.6.4_A2 esid: sec-properties-of-the-boolean-prototype-object description: Checking Object.prototype.isPrototypeOf(Boolean.prototype) ---*/ diff --git a/test/built-ins/Boolean/prototype/constructor/S15.6.4.1_A1.js b/test/built-ins/Boolean/prototype/constructor/S15.6.4.1_A1.js index 218632c660..d0aa999b4d 100644 --- a/test/built-ins/Boolean/prototype/constructor/S15.6.4.1_A1.js +++ b/test/built-ins/Boolean/prototype/constructor/S15.6.4.1_A1.js @@ -6,7 +6,6 @@ info: | The initial value of Boolean.prototype.constructor is the built-in Boolean constructor esid: sec-boolean-constructor -es5id: 15.6.4.1_A1 description: Compare Boolean.prototype.constructor with Boolean ---*/ diff --git a/test/built-ins/Boolean/prototype/toString/length.js b/test/built-ins/Boolean/prototype/toString/length.js index 924380c1ca..4e5e4f415e 100644 --- a/test/built-ins/Boolean/prototype/toString/length.js +++ b/test/built-ins/Boolean/prototype/toString/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-boolean.prototype.tostring -es6id: 19.3.3.2 description: > Boolean.prototype.toString.length is 0. info: | diff --git a/test/built-ins/Boolean/prototype/toString/name.js b/test/built-ins/Boolean/prototype/toString/name.js index 53340b9f45..cce5f02785 100644 --- a/test/built-ins/Boolean/prototype/toString/name.js +++ b/test/built-ins/Boolean/prototype/toString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-boolean.prototype.tostring -es6id: 19.3.3.2 description: > Boolean.prototype.toString.name is "toString". info: | diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1.js index 743e1966c0..597ccffbde 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: Boolean.prototype.valueOf() returns this boolean value esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A1_T1 description: no arguments ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2.js index 095d0daaaa..7420e78bbe 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: Boolean.prototype.valueOf() returns this boolean value esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A1_T2 description: calling with argument ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T1.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T1.js index 0651f8cb35..591957f4d3 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T1.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T1.js @@ -7,7 +7,6 @@ info: | to other kinds of objects for use as a method and there is should be a TypeError exception if its this value is not a Boolean object esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A2_T1 description: transferring to the String objects ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js index 6e2af85b2e..fba4fbe9c1 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js @@ -7,7 +7,6 @@ info: | to other kinds of objects for use as a method and there is should be a TypeError exception if its this value is not a Boolean object esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A2_T2 description: transferring to the Number objects ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T3.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T3.js index f66950631b..a2cd6f63ba 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T3.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T3.js @@ -7,7 +7,6 @@ info: | to other kinds of objects for use as a method and there is should be a TypeError exception if its this value is not a Boolean object esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A2_T3 description: transferring to the Date objects ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T4.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T4.js index 816ef97d71..cd5c3d1c42 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T4.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T4.js @@ -7,7 +7,6 @@ info: | to other kinds of objects for use as a method and there is should be a TypeError exception if its this value is not a Boolean object esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A2_T4 description: transferring to the Object objects ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T5.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T5.js index 3f645a0bf0..f575fa1814 100644 --- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T5.js +++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T5.js @@ -7,7 +7,6 @@ info: | to other kinds of objects for use as a method and there is should be a TypeError exception if its this value is not a Boolean object esid: sec-boolean.prototype.valueof -es5id: 15.6.4.3_A2_T5 description: transferring to the other objects ---*/ diff --git a/test/built-ins/Boolean/prototype/valueOf/length.js b/test/built-ins/Boolean/prototype/valueOf/length.js index 511bd8cb7d..f87fc20c8b 100644 --- a/test/built-ins/Boolean/prototype/valueOf/length.js +++ b/test/built-ins/Boolean/prototype/valueOf/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-boolean.prototype.valueof -es6id: 19.3.3.3 description: > Boolean.prototype.valueOf.length is 0. info: | diff --git a/test/built-ins/Boolean/prototype/valueOf/name.js b/test/built-ins/Boolean/prototype/valueOf/name.js index e1983170c5..afe244119e 100644 --- a/test/built-ins/Boolean/prototype/valueOf/name.js +++ b/test/built-ins/Boolean/prototype/valueOf/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-boolean.prototype.valueof -es6id: 19.3.3.3 description: > Boolean.prototype.valueOf.name is "valueOf". info: | diff --git a/test/built-ins/Boolean/symbol-coercion.js b/test/built-ins/Boolean/symbol-coercion.js index d1cc5e6d4e..8261fbf018 100644 --- a/test/built-ins/Boolean/symbol-coercion.js +++ b/test/built-ins/Boolean/symbol-coercion.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-toboolean -es6id: 7.1.2 description: > Boolean coercion operations on Symbols features: [Symbol] diff --git a/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws-sab.js b/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws-sab.js index 0edf058f62..57bca929b4 100644 --- a/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws-sab.js +++ b/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if buffer does not have [[ArrayBufferData]] diff --git a/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws.js b/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws.js index a36e1c65c7..0c67ae7367 100644 --- a/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws.js +++ b/test/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if buffer does not have [[ArrayBufferData]] diff --git a/test/built-ins/DataView/buffer-not-object-throws.js b/test/built-ins/DataView/buffer-not-object-throws.js index 5725787ead..b85deb09ad 100644 --- a/test/built-ins/DataView/buffer-not-object-throws.js +++ b/test/built-ins/DataView/buffer-not-object-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if buffer is not Object diff --git a/test/built-ins/DataView/buffer-reference-sab.js b/test/built-ins/DataView/buffer-reference-sab.js index e1b8b3855b..ead17ef480 100644 --- a/test/built-ins/DataView/buffer-reference-sab.js +++ b/test/built-ins/DataView/buffer-reference-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Reuse buffer argument instead of making a new clone diff --git a/test/built-ins/DataView/buffer-reference.js b/test/built-ins/DataView/buffer-reference.js index c370e8d119..d708deda46 100644 --- a/test/built-ins/DataView/buffer-reference.js +++ b/test/built-ins/DataView/buffer-reference.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Reuse buffer argument instead of making a new clone diff --git a/test/built-ins/DataView/byteoffset-is-negative-throws-sab.js b/test/built-ins/DataView/byteoffset-is-negative-throws-sab.js index 98dc9faa53..12387d24de 100644 --- a/test/built-ins/DataView/byteoffset-is-negative-throws-sab.js +++ b/test/built-ins/DataView/byteoffset-is-negative-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a RangeError if ToInteger(byteOffset) < 0 diff --git a/test/built-ins/DataView/byteoffset-is-negative-throws.js b/test/built-ins/DataView/byteoffset-is-negative-throws.js index 0ba90b42d9..0e12a37816 100644 --- a/test/built-ins/DataView/byteoffset-is-negative-throws.js +++ b/test/built-ins/DataView/byteoffset-is-negative-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a RangeError if ToInteger(byteOffset) < 0 diff --git a/test/built-ins/DataView/constructor.js b/test/built-ins/DataView/constructor.js index 5d52c3b0bd..af555cf550 100644 --- a/test/built-ins/DataView/constructor.js +++ b/test/built-ins/DataView/constructor.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview-constructor -es6id: 24.2.2 description: > The DataView constructor is the %DataView% intrinsic object and the initial value of the DataView property of the global object. diff --git a/test/built-ins/DataView/custom-proto-access-throws-sab.js b/test/built-ins/DataView/custom-proto-access-throws-sab.js index fca677f51f..672791b1a4 100644 --- a/test/built-ins/DataView/custom-proto-access-throws-sab.js +++ b/test/built-ins/DataView/custom-proto-access-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from newTarget's custom constructor prototype diff --git a/test/built-ins/DataView/custom-proto-access-throws.js b/test/built-ins/DataView/custom-proto-access-throws.js index 15b480a688..e044439587 100644 --- a/test/built-ins/DataView/custom-proto-access-throws.js +++ b/test/built-ins/DataView/custom-proto-access-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from newTarget's custom constructor prototype diff --git a/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype-sab.js b/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype-sab.js index accdd4125d..16da436734 100644 --- a/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype-sab.js +++ b/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Use DataView.prototype if newTarget's prototype is not an Object diff --git a/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype.js b/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype.js index 09b7aaf856..78246616f1 100644 --- a/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype.js +++ b/test/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Use DataView.prototype if newTarget's prototype is not an Object diff --git a/test/built-ins/DataView/custom-proto-if-object-is-used-sab.js b/test/built-ins/DataView/custom-proto-if-object-is-used-sab.js index 732cdc8fa6..651d75cd5c 100644 --- a/test/built-ins/DataView/custom-proto-if-object-is-used-sab.js +++ b/test/built-ins/DataView/custom-proto-if-object-is-used-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Use newTarget's custom constructor prototype if Object diff --git a/test/built-ins/DataView/custom-proto-if-object-is-used.js b/test/built-ins/DataView/custom-proto-if-object-is-used.js index fa20c9c792..10fc253d92 100644 --- a/test/built-ins/DataView/custom-proto-if-object-is-used.js +++ b/test/built-ins/DataView/custom-proto-if-object-is-used.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Use newTarget's custom constructor prototype if Object diff --git a/test/built-ins/DataView/dataview.js b/test/built-ins/DataView/dataview.js index 1b554183af..7d9131840e 100644 --- a/test/built-ins/DataView/dataview.js +++ b/test/built-ins/DataView/dataview.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview-constructor -es6id: 24.2.2 description: > The DataView Constructor includes: [propertyHelper.js] diff --git a/test/built-ins/DataView/defined-bytelength-and-byteoffset-sab.js b/test/built-ins/DataView/defined-bytelength-and-byteoffset-sab.js index 1e5dc9a83d..d778002d90 100644 --- a/test/built-ins/DataView/defined-bytelength-and-byteoffset-sab.js +++ b/test/built-ins/DataView/defined-bytelength-and-byteoffset-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined length and offset diff --git a/test/built-ins/DataView/defined-bytelength-and-byteoffset.js b/test/built-ins/DataView/defined-bytelength-and-byteoffset.js index 679634af62..2968461aca 100644 --- a/test/built-ins/DataView/defined-bytelength-and-byteoffset.js +++ b/test/built-ins/DataView/defined-bytelength-and-byteoffset.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined length and offset diff --git a/test/built-ins/DataView/defined-byteoffset-sab.js b/test/built-ins/DataView/defined-byteoffset-sab.js index b15aa54e8d..835240b0f4 100644 --- a/test/built-ins/DataView/defined-byteoffset-sab.js +++ b/test/built-ins/DataView/defined-byteoffset-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined offset diff --git a/test/built-ins/DataView/defined-byteoffset-undefined-bytelength-sab.js b/test/built-ins/DataView/defined-byteoffset-undefined-bytelength-sab.js index 1fd6f27f06..a732260b62 100644 --- a/test/built-ins/DataView/defined-byteoffset-undefined-bytelength-sab.js +++ b/test/built-ins/DataView/defined-byteoffset-undefined-bytelength-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined byteoffset and undefined bytelength diff --git a/test/built-ins/DataView/defined-byteoffset-undefined-bytelength.js b/test/built-ins/DataView/defined-byteoffset-undefined-bytelength.js index de0180c979..21bcce4712 100644 --- a/test/built-ins/DataView/defined-byteoffset-undefined-bytelength.js +++ b/test/built-ins/DataView/defined-byteoffset-undefined-bytelength.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined byteoffset and undefined bytelength diff --git a/test/built-ins/DataView/defined-byteoffset.js b/test/built-ins/DataView/defined-byteoffset.js index dd842ab2c2..ecb763423c 100644 --- a/test/built-ins/DataView/defined-byteoffset.js +++ b/test/built-ins/DataView/defined-byteoffset.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return new instance from defined offset diff --git a/test/built-ins/DataView/detached-buffer.js b/test/built-ins/DataView/detached-buffer.js index edcb68e526..d76c07e4ec 100644 --- a/test/built-ins/DataView/detached-buffer.js +++ b/test/built-ins/DataView/detached-buffer.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if buffer is detached diff --git a/test/built-ins/DataView/excessive-bytelength-throws-sab.js b/test/built-ins/DataView/excessive-bytelength-throws-sab.js index c0d4f6f8bc..fc18fb2629 100644 --- a/test/built-ins/DataView/excessive-bytelength-throws-sab.js +++ b/test/built-ins/DataView/excessive-bytelength-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws RangeError if offset + viewByteLength > bufferByteLength diff --git a/test/built-ins/DataView/excessive-bytelength-throws.js b/test/built-ins/DataView/excessive-bytelength-throws.js index 374836415f..a15cc5d83c 100644 --- a/test/built-ins/DataView/excessive-bytelength-throws.js +++ b/test/built-ins/DataView/excessive-bytelength-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws RangeError if offset + viewByteLength > bufferByteLength diff --git a/test/built-ins/DataView/excessive-byteoffset-throws-sab.js b/test/built-ins/DataView/excessive-byteoffset-throws-sab.js index e66bb7e3ee..eff146e81f 100644 --- a/test/built-ins/DataView/excessive-byteoffset-throws-sab.js +++ b/test/built-ins/DataView/excessive-byteoffset-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a RangeError if offset > bufferByteLength diff --git a/test/built-ins/DataView/excessive-byteoffset-throws.js b/test/built-ins/DataView/excessive-byteoffset-throws.js index b97d507a9b..b7e1bc3ace 100644 --- a/test/built-ins/DataView/excessive-byteoffset-throws.js +++ b/test/built-ins/DataView/excessive-byteoffset-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a RangeError if offset > bufferByteLength diff --git a/test/built-ins/DataView/extensibility.js b/test/built-ins/DataView/extensibility.js index a0dbee8bdd..0609f9facb 100644 --- a/test/built-ins/DataView/extensibility.js +++ b/test/built-ins/DataView/extensibility.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview-constructor -es6id: 24.2.2 description: > The DataView constructor is extensible info: | diff --git a/test/built-ins/DataView/instance-extensibility-sab.js b/test/built-ins/DataView/instance-extensibility-sab.js index 4709bf1a86..0ecdbb17cc 100644 --- a/test/built-ins/DataView/instance-extensibility-sab.js +++ b/test/built-ins/DataView/instance-extensibility-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > The new instance is extensible diff --git a/test/built-ins/DataView/instance-extensibility.js b/test/built-ins/DataView/instance-extensibility.js index 439ae9d3d8..11d4d046dd 100644 --- a/test/built-ins/DataView/instance-extensibility.js +++ b/test/built-ins/DataView/instance-extensibility.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > The new instance is extensible diff --git a/test/built-ins/DataView/name.js b/test/built-ins/DataView/name.js index bbe6740ddd..750f343e62 100644 --- a/test/built-ins/DataView/name.js +++ b/test/built-ins/DataView/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview-constructor -es6id: 24.2.2 description: > The name property of DataView is "DataView" includes: [propertyHelper.js] diff --git a/test/built-ins/DataView/newtarget-undefined-throws-sab.js b/test/built-ins/DataView/newtarget-undefined-throws-sab.js index cc7d4593f1..505147cd5c 100644 --- a/test/built-ins/DataView/newtarget-undefined-throws-sab.js +++ b/test/built-ins/DataView/newtarget-undefined-throws-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if NewTarget is undefined. diff --git a/test/built-ins/DataView/newtarget-undefined-throws.js b/test/built-ins/DataView/newtarget-undefined-throws.js index b3529e1f46..4129b5adf3 100644 --- a/test/built-ins/DataView/newtarget-undefined-throws.js +++ b/test/built-ins/DataView/newtarget-undefined-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Throws a TypeError if NewTarget is undefined. diff --git a/test/built-ins/DataView/proto-from-ctor-realm-sab.js b/test/built-ins/DataView/proto-from-ctor-realm-sab.js index 9caf877f2b..3e89e6ffa4 100644 --- a/test/built-ins/DataView/proto-from-ctor-realm-sab.js +++ b/test/built-ins/DataView/proto-from-ctor-realm-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-dataview-buffer-byteoffset-bytelength -es6id: 24.2.2.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/DataView/proto-from-ctor-realm.js b/test/built-ins/DataView/proto-from-ctor-realm.js index d5f9e5c0e9..09de35dbc2 100644 --- a/test/built-ins/DataView/proto-from-ctor-realm.js +++ b/test/built-ins/DataView/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-dataview-buffer-byteoffset-bytelength -es6id: 24.2.2.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/DataView/proto.js b/test/built-ins/DataView/proto.js index 8836b1197f..09d82f2203 100644 --- a/test/built-ins/DataView/proto.js +++ b/test/built-ins/DataView/proto.js @@ -3,7 +3,6 @@ /*--- esid: sec-properties-of-the-dataview-constructor -es6id: 24.2.3 description: > The prototype of DataView is Function.prototype info: | diff --git a/test/built-ins/DataView/prototype.js b/test/built-ins/DataView/prototype.js index 9f0acebb9a..689c1a892d 100644 --- a/test/built-ins/DataView/prototype.js +++ b/test/built-ins/DataView/prototype.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype -es6id: 24.2.3.1 description: > The initial value of DataView.prototype is the DataView prototype object. info: | diff --git a/test/built-ins/DataView/prototype/Symbol.toStringTag.js b/test/built-ins/DataView/prototype/Symbol.toStringTag.js index 8a386e9c2e..eb71c49b50 100644 --- a/test/built-ins/DataView/prototype/Symbol.toStringTag.js +++ b/test/built-ins/DataView/prototype/Symbol.toStringTag.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-dataview.prototype-@@tostringtag -es6id: 24.2.4.21 description: > `Symbol.toStringTag` property descriptor info: | diff --git a/test/built-ins/DataView/prototype/buffer/detached-buffer.js b/test/built-ins/DataView/prototype/buffer/detached-buffer.js index 0e473ee24e..2951425079 100644 --- a/test/built-ins/DataView/prototype/buffer/detached-buffer.js +++ b/test/built-ins/DataView/prototype/buffer/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: The getter method does not throw with a detached buffer info: | 24.2.4.1 get DataView.prototype.buffer diff --git a/test/built-ins/DataView/prototype/buffer/invoked-as-accessor.js b/test/built-ins/DataView/prototype/buffer/invoked-as-accessor.js index 4816f83a6e..9171b180ca 100644 --- a/test/built-ins/DataView/prototype/buffer/invoked-as-accessor.js +++ b/test/built-ins/DataView/prototype/buffer/invoked-as-accessor.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: > Requires this value to have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/buffer/invoked-as-func.js b/test/built-ins/DataView/prototype/buffer/invoked-as-func.js index 7033049496..a3a0acb822 100644 --- a/test/built-ins/DataView/prototype/buffer/invoked-as-func.js +++ b/test/built-ins/DataView/prototype/buffer/invoked-as-func.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: Throws a TypeError exception when invoked as a function info: | 24.2.4.1 get DataView.prototype.buffer diff --git a/test/built-ins/DataView/prototype/buffer/length.js b/test/built-ins/DataView/prototype/buffer/length.js index 91dad00001..8535518a13 100644 --- a/test/built-ins/DataView/prototype/buffer/length.js +++ b/test/built-ins/DataView/prototype/buffer/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: > get DataView.prototype.buffer.length is 0. info: | diff --git a/test/built-ins/DataView/prototype/buffer/name.js b/test/built-ins/DataView/prototype/buffer/name.js index b096d728a3..cd2f20b114 100644 --- a/test/built-ins/DataView/prototype/buffer/name.js +++ b/test/built-ins/DataView/prototype/buffer/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.2 description: > get DataView.prototype.buffer diff --git a/test/built-ins/DataView/prototype/buffer/prop-desc.js b/test/built-ins/DataView/prototype/buffer/prop-desc.js index 07b6510328..dedd0a7b3a 100644 --- a/test/built-ins/DataView/prototype/buffer/prop-desc.js +++ b/test/built-ins/DataView/prototype/buffer/prop-desc.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: > "buffer" property of DataView.prototype info: | diff --git a/test/built-ins/DataView/prototype/buffer/return-buffer-sab.js b/test/built-ins/DataView/prototype/buffer/return-buffer-sab.js index 9e11cd9307..742561f372 100644 --- a/test/built-ins/DataView/prototype/buffer/return-buffer-sab.js +++ b/test/built-ins/DataView/prototype/buffer/return-buffer-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: > Return buffer from [[ViewedArrayBuffer]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/buffer/return-buffer.js b/test/built-ins/DataView/prototype/buffer/return-buffer.js index 9d47bf6265..adc4a677c2 100644 --- a/test/built-ins/DataView/prototype/buffer/return-buffer.js +++ b/test/built-ins/DataView/prototype/buffer/return-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: > Return buffer from [[ViewedArrayBuffer]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/buffer/this-is-not-object.js b/test/built-ins/DataView/prototype/buffer/this-is-not-object.js index a5bd770c5e..3453794f9b 100644 --- a/test/built-ins/DataView/prototype/buffer/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/buffer/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.buffer -es6id: 24.2.4.1 description: Throws a TypeError exception when `this` is not Object info: | 24.2.4.1 get DataView.prototype.buffer diff --git a/test/built-ins/DataView/prototype/byteLength/detached-buffer.js b/test/built-ins/DataView/prototype/byteLength/detached-buffer.js index 1e95b87a4a..2733e64139 100644 --- a/test/built-ins/DataView/prototype/byteLength/detached-buffer.js +++ b/test/built-ins/DataView/prototype/byteLength/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: Throws a TypeError if the instance has a detached buffer info: | 24.2.4.2 get DataView.prototype.byteLength diff --git a/test/built-ins/DataView/prototype/byteLength/invoked-as-accessor.js b/test/built-ins/DataView/prototype/byteLength/invoked-as-accessor.js index fac295cfc3..53ae288d7a 100644 --- a/test/built-ins/DataView/prototype/byteLength/invoked-as-accessor.js +++ b/test/built-ins/DataView/prototype/byteLength/invoked-as-accessor.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > Requires this value to have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteLength/invoked-as-func.js b/test/built-ins/DataView/prototype/byteLength/invoked-as-func.js index d7a9d416db..d09771f017 100644 --- a/test/built-ins/DataView/prototype/byteLength/invoked-as-func.js +++ b/test/built-ins/DataView/prototype/byteLength/invoked-as-func.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: Throws a TypeError exception when invoked as a function info: | 24.2.4.2 get DataView.prototype.byteLength diff --git a/test/built-ins/DataView/prototype/byteLength/length.js b/test/built-ins/DataView/prototype/byteLength/length.js index cc6d0f141d..ec6b247d28 100644 --- a/test/built-ins/DataView/prototype/byteLength/length.js +++ b/test/built-ins/DataView/prototype/byteLength/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > get DataView.prototype.byteLength.length is 0. info: | diff --git a/test/built-ins/DataView/prototype/byteLength/name.js b/test/built-ins/DataView/prototype/byteLength/name.js index 8f403077a3..bbdd2a59d9 100644 --- a/test/built-ins/DataView/prototype/byteLength/name.js +++ b/test/built-ins/DataView/prototype/byteLength/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > get DataView.prototype.byteLength diff --git a/test/built-ins/DataView/prototype/byteLength/prop-desc.js b/test/built-ins/DataView/prototype/byteLength/prop-desc.js index 5314de2755..8092e762ae 100644 --- a/test/built-ins/DataView/prototype/byteLength/prop-desc.js +++ b/test/built-ins/DataView/prototype/byteLength/prop-desc.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > "byteLength" property of DataView.prototype info: | diff --git a/test/built-ins/DataView/prototype/byteLength/return-bytelength-sab.js b/test/built-ins/DataView/prototype/byteLength/return-bytelength-sab.js index 200c6dbbdf..0972d61aaa 100644 --- a/test/built-ins/DataView/prototype/byteLength/return-bytelength-sab.js +++ b/test/built-ins/DataView/prototype/byteLength/return-bytelength-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > Return value from [[ByteLength]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteLength/return-bytelength.js b/test/built-ins/DataView/prototype/byteLength/return-bytelength.js index b17fe57dfb..dc76272de3 100644 --- a/test/built-ins/DataView/prototype/byteLength/return-bytelength.js +++ b/test/built-ins/DataView/prototype/byteLength/return-bytelength.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: > Return value from [[ByteLength]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteLength/this-is-not-object.js b/test/built-ins/DataView/prototype/byteLength/this-is-not-object.js index f0bbf5741c..3a464eacc1 100644 --- a/test/built-ins/DataView/prototype/byteLength/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/byteLength/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.bytelength -es6id: 24.2.4.2 description: Throws a TypeError exception when `this` is not Object info: | 24.2.4.2 get DataView.prototype.byteLength diff --git a/test/built-ins/DataView/prototype/byteOffset/detached-buffer.js b/test/built-ins/DataView/prototype/byteOffset/detached-buffer.js index c61dd51fb0..c296ec3e2c 100644 --- a/test/built-ins/DataView/prototype/byteOffset/detached-buffer.js +++ b/test/built-ins/DataView/prototype/byteOffset/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: Throws a TypeError if the instance has a detached buffer info: | 24.2.4.3 get DataView.prototype.byteOffset diff --git a/test/built-ins/DataView/prototype/byteOffset/invoked-as-accessor.js b/test/built-ins/DataView/prototype/byteOffset/invoked-as-accessor.js index 890277096c..0ab398d2d7 100644 --- a/test/built-ins/DataView/prototype/byteOffset/invoked-as-accessor.js +++ b/test/built-ins/DataView/prototype/byteOffset/invoked-as-accessor.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: > Requires this value to have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteOffset/invoked-as-func.js b/test/built-ins/DataView/prototype/byteOffset/invoked-as-func.js index c95f62525e..38d932743b 100644 --- a/test/built-ins/DataView/prototype/byteOffset/invoked-as-func.js +++ b/test/built-ins/DataView/prototype/byteOffset/invoked-as-func.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: Throws a TypeError exception when invoked as a function info: | 24.2.4.3 get DataView.prototype.byteOffset diff --git a/test/built-ins/DataView/prototype/byteOffset/length.js b/test/built-ins/DataView/prototype/byteOffset/length.js index 2f479786da..ede61c2d89 100644 --- a/test/built-ins/DataView/prototype/byteOffset/length.js +++ b/test/built-ins/DataView/prototype/byteOffset/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: > get DataView.prototype.byteOffset.length is 0. info: | diff --git a/test/built-ins/DataView/prototype/byteOffset/name.js b/test/built-ins/DataView/prototype/byteOffset/name.js index 8ea782d41e..a2d6d2ca95 100644 --- a/test/built-ins/DataView/prototype/byteOffset/name.js +++ b/test/built-ins/DataView/prototype/byteOffset/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.2 description: > get DataView.prototype.byteOffset diff --git a/test/built-ins/DataView/prototype/byteOffset/prop-desc.js b/test/built-ins/DataView/prototype/byteOffset/prop-desc.js index d86cce071b..42c84e9e98 100644 --- a/test/built-ins/DataView/prototype/byteOffset/prop-desc.js +++ b/test/built-ins/DataView/prototype/byteOffset/prop-desc.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: > "byteOffset" property of DataView.prototype info: | diff --git a/test/built-ins/DataView/prototype/byteOffset/return-byteoffset-sab.js b/test/built-ins/DataView/prototype/byteOffset/return-byteoffset-sab.js index b4fb8cfc71..2ee304154f 100644 --- a/test/built-ins/DataView/prototype/byteOffset/return-byteoffset-sab.js +++ b/test/built-ins/DataView/prototype/byteOffset/return-byteoffset-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: > Return value from [[ByteOffset]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteOffset/return-byteoffset.js b/test/built-ins/DataView/prototype/byteOffset/return-byteoffset.js index d743a8d920..ae589a4f6e 100644 --- a/test/built-ins/DataView/prototype/byteOffset/return-byteoffset.js +++ b/test/built-ins/DataView/prototype/byteOffset/return-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: > Return value from [[ByteOffset]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/byteOffset/this-is-not-object.js b/test/built-ins/DataView/prototype/byteOffset/this-is-not-object.js index 7e2038254c..0c8d2c82d8 100644 --- a/test/built-ins/DataView/prototype/byteOffset/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/byteOffset/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-dataview.prototype.byteoffset -es6id: 24.2.4.3 description: Throws a TypeError exception when `this` is not Object info: | 24.2.4.3 get DataView.prototype.byteOffset diff --git a/test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js index cf9293dba9..7b1618bfc7 100644 --- a/test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/detached-buffer.js b/test/built-ins/DataView/prototype/getFloat32/detached-buffer.js index 51cbecee60..8abc5f5689 100644 --- a/test/built-ins/DataView/prototype/getFloat32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getFloat32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getFloat32/index-is-out-of-range.js index 31d9dddae5..3dd35d0ed4 100644 --- a/test/built-ins/DataView/prototype/getFloat32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getFloat32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/minus-zero.js b/test/built-ins/DataView/prototype/getFloat32/minus-zero.js index 38f4205b42..3e648dab32 100644 --- a/test/built-ins/DataView/prototype/getFloat32/minus-zero.js +++ b/test/built-ins/DataView/prototype/getFloat32/minus-zero.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return -0 info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/name.js b/test/built-ins/DataView/prototype/getFloat32/name.js index 9ed6c838d3..d247c1d99a 100644 --- a/test/built-ins/DataView/prototype/getFloat32/name.js +++ b/test/built-ins/DataView/prototype/getFloat32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > DataView.prototype.getFloat32.name is "getFloat32". info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getFloat32/negative-byteoffset-throws.js index f2298faa59..5c26b8f467 100644 --- a/test/built-ins/DataView/prototype/getFloat32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getFloat32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Throws a RangeError if ToInteger(byteOffset) < 0 info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js index 66e400eea3..001900e219 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset.js index 81c62bda67..eae781e522 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-infinity.js b/test/built-ins/DataView/prototype/getFloat32/return-infinity.js index ebee009952..9d7e2feaa8 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-infinity.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-infinity.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return Infinity values info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-nan.js b/test/built-ins/DataView/prototype/getFloat32/return-nan.js index 4a2b7ffff0..3ba9a23d06 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-nan.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-nan.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return NaN values info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getFloat32/return-value-clean-arraybuffer.js index cd95052339..778c8c8981 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getFloat32/return-values-custom-offset.js index 1bf090c3d8..dc3564c0c0 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/return-values.js b/test/built-ins/DataView/prototype/getFloat32/return-values.js index 730b5d99f7..395f2aba94 100644 --- a/test/built-ins/DataView/prototype/getFloat32/return-values.js +++ b/test/built-ins/DataView/prototype/getFloat32/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getFloat32/this-has-no-dataview-internal.js index 8c75f11e2a..0e5658065f 100644 --- a/test/built-ins/DataView/prototype/getFloat32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getFloat32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getFloat32/this-is-not-object.js b/test/built-ins/DataView/prototype/getFloat32/this-is-not-object.js index 800f8e4ca4..9191f5ac03 100644 --- a/test/built-ins/DataView/prototype/getFloat32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getFloat32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: Throws a TypeError if this is not Object info: | 24.2.4.5 DataView.prototype.getFloat32 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getFloat32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getFloat32/to-boolean-littleendian.js index 88f6901a8a..8416d7c6a5 100644 --- a/test/built-ins/DataView/prototype/getFloat32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getFloat32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat32 -es6id: 24.2.4.5 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js index 6fc2c78c1e..90e6fbd1bd 100644 --- a/test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/detached-buffer.js b/test/built-ins/DataView/prototype/getFloat64/detached-buffer.js index 7320ba3f80..0d511b0488 100644 --- a/test/built-ins/DataView/prototype/getFloat64/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getFloat64/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getFloat64/index-is-out-of-range.js index 594dc60e7d..2b25d1160f 100644 --- a/test/built-ins/DataView/prototype/getFloat64/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getFloat64/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/minus-zero.js b/test/built-ins/DataView/prototype/getFloat64/minus-zero.js index 281867a98b..196c369e7c 100644 --- a/test/built-ins/DataView/prototype/getFloat64/minus-zero.js +++ b/test/built-ins/DataView/prototype/getFloat64/minus-zero.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return -0 info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/name.js b/test/built-ins/DataView/prototype/getFloat64/name.js index d1c544ee33..74361047ff 100644 --- a/test/built-ins/DataView/prototype/getFloat64/name.js +++ b/test/built-ins/DataView/prototype/getFloat64/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > DataView.prototype.getFloat64.name is "getFloat64". info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getFloat64/negative-byteoffset-throws.js index 12dbdcdeb5..2e12b9b02f 100644 --- a/test/built-ins/DataView/prototype/getFloat64/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getFloat64/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js index 73f33b8f51..16a52d86d6 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset.js index ce76ae7b78..a678906535 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-infinity.js b/test/built-ins/DataView/prototype/getFloat64/return-infinity.js index f81292a9b9..96abe93235 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-infinity.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-infinity.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return Infinity values info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-nan.js b/test/built-ins/DataView/prototype/getFloat64/return-nan.js index 4184437bfb..3e49058b95 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-nan.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-nan.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return NaN values info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getFloat64/return-value-clean-arraybuffer.js index 1249a2b6eb..63c19cc8b5 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getFloat64/return-values-custom-offset.js index 884cf89ad2..e5ec63fdbd 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/return-values.js b/test/built-ins/DataView/prototype/getFloat64/return-values.js index b278e17144..a02f8d4060 100644 --- a/test/built-ins/DataView/prototype/getFloat64/return-values.js +++ b/test/built-ins/DataView/prototype/getFloat64/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getFloat64/this-has-no-dataview-internal.js index 5233c3e5e0..98360b3ee0 100644 --- a/test/built-ins/DataView/prototype/getFloat64/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getFloat64/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/this-is-not-object.js b/test/built-ins/DataView/prototype/getFloat64/this-is-not-object.js index d2dac02374..4bd9da3ea5 100644 --- a/test/built-ins/DataView/prototype/getFloat64/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getFloat64/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: Throws a TypeError if this is not Object info: | 24.2.4.6 DataView.prototype.getFloat64 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getFloat64/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getFloat64/to-boolean-littleendian.js index c06154d7d6..dd74152f48 100644 --- a/test/built-ins/DataView/prototype/getFloat64/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getFloat64/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getFloat64/toindex-byteoffset.js b/test/built-ins/DataView/prototype/getFloat64/toindex-byteoffset.js index 966630a1e6..4fb69555e0 100644 --- a/test/built-ins/DataView/prototype/getFloat64/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/getFloat64/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getfloat64 -es6id: 24.2.4.6 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js index 1432f1c176..cbe7646501 100644 --- a/test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getInt16/detached-buffer.js b/test/built-ins/DataView/prototype/getInt16/detached-buffer.js index 945f699c42..6720f52dc7 100644 --- a/test/built-ins/DataView/prototype/getInt16/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getInt16/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getInt16/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getInt16/index-is-out-of-range.js index 9f897a8d8b..b4982986d6 100644 --- a/test/built-ins/DataView/prototype/getInt16/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getInt16/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getInt16/name.js b/test/built-ins/DataView/prototype/getInt16/name.js index ef491030b9..2aaa1a8efe 100644 --- a/test/built-ins/DataView/prototype/getInt16/name.js +++ b/test/built-ins/DataView/prototype/getInt16/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > DataView.prototype.getInt16.name is "getInt16". info: | diff --git a/test/built-ins/DataView/prototype/getInt16/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getInt16/negative-byteoffset-throws.js index 1dd8d6665c..e5f86f7561 100644 --- a/test/built-ins/DataView/prototype/getInt16/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getInt16/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset-symbol.js index bc53f5677d..0db71a40af 100644 --- a/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset.js index b44915191c..f0c2c4f2a1 100644 --- a/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt16/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt16/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getInt16/return-value-clean-arraybuffer.js index 211102f873..40d21198c1 100644 --- a/test/built-ins/DataView/prototype/getInt16/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getInt16/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getInt16/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getInt16/return-values-custom-offset.js index 2fd2ac45b7..486c087265 100644 --- a/test/built-ins/DataView/prototype/getInt16/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getInt16/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getInt16/return-values.js b/test/built-ins/DataView/prototype/getInt16/return-values.js index 5186f4ddc7..1be01f6d54 100644 --- a/test/built-ins/DataView/prototype/getInt16/return-values.js +++ b/test/built-ins/DataView/prototype/getInt16/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getInt16/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getInt16/this-has-no-dataview-internal.js index f84da56f68..e5de071b0f 100644 --- a/test/built-ins/DataView/prototype/getInt16/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getInt16/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getInt16/this-is-not-object.js b/test/built-ins/DataView/prototype/getInt16/this-is-not-object.js index 7232945cdd..e880f9f3e6 100644 --- a/test/built-ins/DataView/prototype/getInt16/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getInt16/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: Throws a TypeError if this is not Object info: | 24.2.4.8 DataView.prototype.getInt16 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getInt16/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getInt16/to-boolean-littleendian.js index fff7f2f11b..cb6e044014 100644 --- a/test/built-ins/DataView/prototype/getInt16/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getInt16/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint16 -es6id: 24.2.4.8 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js index 75bd40c4f7..f4da464745 100644 --- a/test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getInt32/detached-buffer.js b/test/built-ins/DataView/prototype/getInt32/detached-buffer.js index 2fe6b42cad..30a31d509b 100644 --- a/test/built-ins/DataView/prototype/getInt32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getInt32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range-sab.js b/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range-sab.js index d70aa75a4d..fb58bcbf86 100644 --- a/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range.js index 55993723e6..a795f3c3df 100644 --- a/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getInt32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getInt32/name.js b/test/built-ins/DataView/prototype/getInt32/name.js index bdd3f38661..884fb05c74 100644 --- a/test/built-ins/DataView/prototype/getInt32/name.js +++ b/test/built-ins/DataView/prototype/getInt32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > DataView.prototype.getInt32.name is "getInt32". info: | diff --git a/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws-sab.js b/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws-sab.js index 79fca0de06..15b54f8acd 100644 --- a/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws.js index f67bc72e0d..f916086c3b 100644 --- a/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-sab.js b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-sab.js index 2e27869141..64365602f9 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol-sab.js b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol-sab.js index 7687a51af0..d91e4aa096 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol.js index 7beb7776e0..88e89425f8 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset.js index c901268ee4..22bf49e473 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer-sab.js b/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer-sab.js index 1f353ccd28..e48c86cc03 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer.js index dfd595376e..040bf7d204 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset-sab.js b/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset-sab.js index e2ec73cd1c..c2bf383e07 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset.js index c1bbe3e404..23d47102eb 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getInt32/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-values-sab.js b/test/built-ins/DataView/prototype/getInt32/return-values-sab.js index 87e0427bc3..25aa1072f1 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-values-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/return-values-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getInt32/return-values.js b/test/built-ins/DataView/prototype/getInt32/return-values.js index 168a5ff89e..2b1bc58a23 100644 --- a/test/built-ins/DataView/prototype/getInt32/return-values.js +++ b/test/built-ins/DataView/prototype/getInt32/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal-sab.js b/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal-sab.js index c9c1339b7f..260d60a74c 100644 --- a/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal.js index 14ccf8f931..962f358c3a 100644 --- a/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getInt32/this-is-not-object.js b/test/built-ins/DataView/prototype/getInt32/this-is-not-object.js index 49eb5a234b..5c8c373935 100644 --- a/test/built-ins/DataView/prototype/getInt32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getInt32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: Throws a TypeError if this is not Object info: | 24.2.4.9 DataView.prototype.getInt32 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian-sab.js b/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian-sab.js index 8fa8e04e9d..8e208587b0 100644 --- a/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian-sab.js +++ b/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian-sab.js @@ -4,7 +4,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian.js index ea4d909af1..9ab07c2ad9 100644 --- a/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getInt32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint32 -es6id: 24.2.4.9 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js index c168243e98..ab322e494f 100644 --- a/test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getInt8/detached-buffer.js b/test/built-ins/DataView/prototype/getInt8/detached-buffer.js index 733d69b3a2..fdf32f5a74 100644 --- a/test/built-ins/DataView/prototype/getInt8/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getInt8/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getInt8/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getInt8/index-is-out-of-range.js index 0b9d55a3aa..b074e63769 100644 --- a/test/built-ins/DataView/prototype/getInt8/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getInt8/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getInt8/length.js b/test/built-ins/DataView/prototype/getInt8/length.js index aa3d65efb4..a219c50e29 100644 --- a/test/built-ins/DataView/prototype/getInt8/length.js +++ b/test/built-ins/DataView/prototype/getInt8/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > DataView.prototype.getInt8.length is 1. info: | diff --git a/test/built-ins/DataView/prototype/getInt8/name.js b/test/built-ins/DataView/prototype/getInt8/name.js index f9102e926d..3b2933f797 100644 --- a/test/built-ins/DataView/prototype/getInt8/name.js +++ b/test/built-ins/DataView/prototype/getInt8/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > DataView.prototype.getInt8.name is "getInt8". info: | diff --git a/test/built-ins/DataView/prototype/getInt8/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getInt8/negative-byteoffset-throws.js index 7f8e0add13..a9bf9969fb 100644 --- a/test/built-ins/DataView/prototype/getInt8/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getInt8/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset-symbol.js index 147a1db428..8c30f98b4d 100644 --- a/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset.js index 9473241b84..780ad3b029 100644 --- a/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getInt8/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getInt8/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getInt8/return-value-clean-arraybuffer.js index f5b3e99a9b..0bcd21addb 100644 --- a/test/built-ins/DataView/prototype/getInt8/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getInt8/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getInt8/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getInt8/return-values-custom-offset.js index 353581e102..d60cf31b3b 100644 --- a/test/built-ins/DataView/prototype/getInt8/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getInt8/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getInt8/return-values.js b/test/built-ins/DataView/prototype/getInt8/return-values.js index b46a6aa9ae..3a76cb4dfb 100644 --- a/test/built-ins/DataView/prototype/getInt8/return-values.js +++ b/test/built-ins/DataView/prototype/getInt8/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getInt8/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getInt8/this-has-no-dataview-internal.js index a8ac91ace7..672fbae605 100644 --- a/test/built-ins/DataView/prototype/getInt8/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getInt8/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getInt8/this-is-not-object.js b/test/built-ins/DataView/prototype/getInt8/this-is-not-object.js index 5d28cd01a3..3c0223e69f 100644 --- a/test/built-ins/DataView/prototype/getInt8/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getInt8/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getint8 -es6id: 24.2.4.7 description: Throws a TypeError if this is not Object info: | 24.2.4.7 DataView.prototype.getInt8 ( byteOffset ) diff --git a/test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js index 01a4d13ee0..7141658917 100644 --- a/test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getUint16/detached-buffer.js b/test/built-ins/DataView/prototype/getUint16/detached-buffer.js index 4eda3d2e10..2d38885586 100644 --- a/test/built-ins/DataView/prototype/getUint16/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getUint16/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getUint16/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getUint16/index-is-out-of-range.js index f09ba6d18e..4bfc44e420 100644 --- a/test/built-ins/DataView/prototype/getUint16/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getUint16/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getUint16/name.js b/test/built-ins/DataView/prototype/getUint16/name.js index 18f59c5443..25621c1041 100644 --- a/test/built-ins/DataView/prototype/getUint16/name.js +++ b/test/built-ins/DataView/prototype/getUint16/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > DataView.prototype.getUint16.name is "getUint16". info: | diff --git a/test/built-ins/DataView/prototype/getUint16/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getUint16/negative-byteoffset-throws.js index 301b647eba..6e1cc289b7 100644 --- a/test/built-ins/DataView/prototype/getUint16/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getUint16/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset-symbol.js index 089bcc0e9d..76fd0e280f 100644 --- a/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset.js index 6ed0e3b7d5..54ab57d4aa 100644 --- a/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint16/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint16/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getUint16/return-value-clean-arraybuffer.js index 435d46fbd1..a1422e7e97 100644 --- a/test/built-ins/DataView/prototype/getUint16/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getUint16/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getUint16/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getUint16/return-values-custom-offset.js index a93416388c..2069b6e3ac 100644 --- a/test/built-ins/DataView/prototype/getUint16/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getUint16/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getUint16/return-values.js b/test/built-ins/DataView/prototype/getUint16/return-values.js index 39efbb7ae4..053a8bc0a2 100644 --- a/test/built-ins/DataView/prototype/getUint16/return-values.js +++ b/test/built-ins/DataView/prototype/getUint16/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getUint16/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getUint16/this-has-no-dataview-internal.js index e34eeba3da..28a4bbc8af 100644 --- a/test/built-ins/DataView/prototype/getUint16/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getUint16/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getUint16/this-is-not-object.js b/test/built-ins/DataView/prototype/getUint16/this-is-not-object.js index 7c19732daf..aefedaf4ee 100644 --- a/test/built-ins/DataView/prototype/getUint16/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getUint16/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: Throws a TypeError if this is not Object info: | 24.2.4.11 DataView.prototype.getUint16 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getUint16/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getUint16/to-boolean-littleendian.js index 12eeae7062..cb9729ec7f 100644 --- a/test/built-ins/DataView/prototype/getUint16/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getUint16/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint16 -es6id: 24.2.4.11 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js index be88a8b239..bcffd52511 100644 --- a/test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getUint32/detached-buffer.js b/test/built-ins/DataView/prototype/getUint32/detached-buffer.js index 8bf219a702..36d701864a 100644 --- a/test/built-ins/DataView/prototype/getUint32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getUint32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getUint32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getUint32/index-is-out-of-range.js index 4765cbdabd..d04c6d63db 100644 --- a/test/built-ins/DataView/prototype/getUint32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getUint32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getUint32/name.js b/test/built-ins/DataView/prototype/getUint32/name.js index 08a90b4afb..b452f2706b 100644 --- a/test/built-ins/DataView/prototype/getUint32/name.js +++ b/test/built-ins/DataView/prototype/getUint32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > DataView.prototype.getUint32.name is "getUint32". info: | diff --git a/test/built-ins/DataView/prototype/getUint32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getUint32/negative-byteoffset-throws.js index eb10997c43..1ceb3e0f15 100644 --- a/test/built-ins/DataView/prototype/getUint32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getUint32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset-symbol.js index e88992719b..a8cc79a286 100644 --- a/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset.js index a65d46afdb..2fa4c25400 100644 --- a/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint32/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getUint32/return-value-clean-arraybuffer.js index bc1175ef41..23186aca7a 100644 --- a/test/built-ins/DataView/prototype/getUint32/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getUint32/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getUint32/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getUint32/return-values-custom-offset.js index 862089b946..e73f38b664 100644 --- a/test/built-ins/DataView/prototype/getUint32/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getUint32/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getUint32/return-values.js b/test/built-ins/DataView/prototype/getUint32/return-values.js index f62c7f2a17..15893b0aab 100644 --- a/test/built-ins/DataView/prototype/getUint32/return-values.js +++ b/test/built-ins/DataView/prototype/getUint32/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getUint32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getUint32/this-has-no-dataview-internal.js index 18edaa0924..8dcd634ab8 100644 --- a/test/built-ins/DataView/prototype/getUint32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getUint32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getUint32/this-is-not-object.js b/test/built-ins/DataView/prototype/getUint32/this-is-not-object.js index fb7fc39f13..ab33e8b279 100644 --- a/test/built-ins/DataView/prototype/getUint32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getUint32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: Throws a TypeError if this is not Object info: | 24.2.4.12 DataView.prototype.getUint32 ( byteOffset [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/getUint32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/getUint32/to-boolean-littleendian.js index 98944a8156..86cf92d3ab 100644 --- a/test/built-ins/DataView/prototype/getUint32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/getUint32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint32 -es6id: 24.2.4.12 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js index 98c8f0a67c..ef924b114d 100644 --- a/test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/getUint8/detached-buffer.js b/test/built-ins/DataView/prototype/getUint8/detached-buffer.js index 77f223c52e..382d9e44b5 100644 --- a/test/built-ins/DataView/prototype/getUint8/detached-buffer.js +++ b/test/built-ins/DataView/prototype/getUint8/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/getUint8/index-is-out-of-range.js b/test/built-ins/DataView/prototype/getUint8/index-is-out-of-range.js index 4facd22eb5..8e6dc85d58 100644 --- a/test/built-ins/DataView/prototype/getUint8/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/getUint8/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/getUint8/length.js b/test/built-ins/DataView/prototype/getUint8/length.js index 4220126b39..5713389698 100644 --- a/test/built-ins/DataView/prototype/getUint8/length.js +++ b/test/built-ins/DataView/prototype/getUint8/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > DataView.prototype.getUint8.length is 1. info: | diff --git a/test/built-ins/DataView/prototype/getUint8/name.js b/test/built-ins/DataView/prototype/getUint8/name.js index d35d42d8ea..f4e06aca7a 100644 --- a/test/built-ins/DataView/prototype/getUint8/name.js +++ b/test/built-ins/DataView/prototype/getUint8/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > DataView.prototype.getUint8.name is "getUint8". info: | diff --git a/test/built-ins/DataView/prototype/getUint8/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/getUint8/negative-byteoffset-throws.js index 60133a0494..60847dd99e 100644 --- a/test/built-ins/DataView/prototype/getUint8/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/getUint8/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset-symbol.js index 9a836f562f..9f3b6c4c4b 100644 --- a/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset.js index 80f499d186..f6cbcb1fec 100644 --- a/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/getUint8/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/getUint8/return-value-clean-arraybuffer.js b/test/built-ins/DataView/prototype/getUint8/return-value-clean-arraybuffer.js index 83433233db..23257b0b40 100644 --- a/test/built-ins/DataView/prototype/getUint8/return-value-clean-arraybuffer.js +++ b/test/built-ins/DataView/prototype/getUint8/return-value-clean-arraybuffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Return value from Buffer using a clean ArrayBuffer info: | diff --git a/test/built-ins/DataView/prototype/getUint8/return-values-custom-offset.js b/test/built-ins/DataView/prototype/getUint8/return-values-custom-offset.js index 4c70cb9869..93d82db314 100644 --- a/test/built-ins/DataView/prototype/getUint8/return-values-custom-offset.js +++ b/test/built-ins/DataView/prototype/getUint8/return-values-custom-offset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Return values from Buffer using a custom offset info: | diff --git a/test/built-ins/DataView/prototype/getUint8/return-values.js b/test/built-ins/DataView/prototype/getUint8/return-values.js index 999fcdbfae..98a720276a 100644 --- a/test/built-ins/DataView/prototype/getUint8/return-values.js +++ b/test/built-ins/DataView/prototype/getUint8/return-values.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Return values from Buffer info: | diff --git a/test/built-ins/DataView/prototype/getUint8/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/getUint8/this-has-no-dataview-internal.js index da30810bb8..3986e60e03 100644 --- a/test/built-ins/DataView/prototype/getUint8/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/getUint8/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/getUint8/this-is-not-object.js b/test/built-ins/DataView/prototype/getUint8/this-is-not-object.js index 99b910b9eb..a7b16e94a1 100644 --- a/test/built-ins/DataView/prototype/getUint8/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/getUint8/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.getuint8 -es6id: 24.2.4.10 description: Throws a TypeError if this is not Object info: | 24.2.4.10 DataView.prototype.getUint8 ( byteOffset ) diff --git a/test/built-ins/DataView/prototype/setFloat32/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setFloat32/detached-buffer-after-number-value.js index ae05b13882..7aecee53f2 100644 --- a/test/built-ins/DataView/prototype/setFloat32/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setFloat32/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js index 260a282a8f..b64032ea6a 100644 --- a/test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/detached-buffer.js b/test/built-ins/DataView/prototype/setFloat32/detached-buffer.js index c3f7c9b9ce..b292d2522a 100644 --- a/test/built-ins/DataView/prototype/setFloat32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setFloat32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setFloat32/index-is-out-of-range.js index 2251242a6a..120a8ba9ef 100644 --- a/test/built-ins/DataView/prototype/setFloat32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setFloat32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/name.js b/test/built-ins/DataView/prototype/setFloat32/name.js index c7ef46a50d..339a80438a 100644 --- a/test/built-ins/DataView/prototype/setFloat32/name.js +++ b/test/built-ins/DataView/prototype/setFloat32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > DataView.prototype.setFloat32.name is "setFloat32". info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setFloat32/negative-byteoffset-throws.js index 1abcccd9ef..5e34039a44 100644 --- a/test/built-ins/DataView/prototype/setFloat32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setFloat32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/no-value-arg.js b/test/built-ins/DataView/prototype/setFloat32/no-value-arg.js index bbb31c0735..ecd76f124e 100644 --- a/test/built-ins/DataView/prototype/setFloat32/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setFloat32/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Set value as undefined (cast to NaN) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js index f97741dcb6..80c8b26170 100644 --- a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset.js index 882607b838..3d308fd2c2 100644 --- a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value-symbol.js index a5730417e7..dd886e3f70 100644 --- a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value.js index 07d1a8b391..4724c8e7d2 100644 --- a/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setFloat32/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setFloat32/set-values-little-endian-order.js index 09f66621eb..0a1780bc40 100644 --- a/test/built-ins/DataView/prototype/setFloat32/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setFloat32/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Set values with little endian order. info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setFloat32/set-values-return-undefined.js index 6e4b96dc5a..e31f81b5ba 100644 --- a/test/built-ins/DataView/prototype/setFloat32/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setFloat32/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setFloat32/this-has-no-dataview-internal.js index d480be9b6e..1bb69b05ed 100644 --- a/test/built-ins/DataView/prototype/setFloat32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setFloat32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setFloat32/this-is-not-object.js b/test/built-ins/DataView/prototype/setFloat32/this-is-not-object.js index 2187f709fd..55815458e5 100644 --- a/test/built-ins/DataView/prototype/setFloat32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setFloat32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: Throws a TypeError if this is not Object info: | 24.2.4.13 DataView.prototype.setFloat32 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setFloat32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setFloat32/to-boolean-littleendian.js index 230be16b2e..190ae50451 100644 --- a/test/built-ins/DataView/prototype/setFloat32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setFloat32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat32 -es6id: 24.2.4.13 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setFloat64/detached-buffer-after-number-value.js index 7d3a4466e3..b71f2b9b1b 100644 --- a/test/built-ins/DataView/prototype/setFloat64/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setFloat64/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js index 841821d172..d7f4ab1c76 100644 --- a/test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/detached-buffer.js b/test/built-ins/DataView/prototype/setFloat64/detached-buffer.js index 66e40e60c9..130ff855b2 100644 --- a/test/built-ins/DataView/prototype/setFloat64/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setFloat64/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setFloat64/index-is-out-of-range.js index b11f71d286..6a1c60aff8 100644 --- a/test/built-ins/DataView/prototype/setFloat64/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setFloat64/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/name.js b/test/built-ins/DataView/prototype/setFloat64/name.js index c6f2b342d0..a054f5d947 100644 --- a/test/built-ins/DataView/prototype/setFloat64/name.js +++ b/test/built-ins/DataView/prototype/setFloat64/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > DataView.prototype.setFloat64.name is "setFloat64". info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setFloat64/negative-byteoffset-throws.js index 940f45bef9..7b9825b4cd 100644 --- a/test/built-ins/DataView/prototype/setFloat64/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setFloat64/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/no-value-arg.js b/test/built-ins/DataView/prototype/setFloat64/no-value-arg.js index b5ea0f434d..af81d460e9 100644 --- a/test/built-ins/DataView/prototype/setFloat64/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setFloat64/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Set value as undefined (cast to NaN) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js index 11d4cd07d2..6992b20550 100644 --- a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset.js index 776aecca16..472d01039f 100644 --- a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value-symbol.js index c2b57a22e4..9429d2be9f 100644 --- a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value.js index d4c3f54abd..8dc509c254 100644 --- a/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setFloat64/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setFloat64/set-values-little-endian-order.js index dcf03a94e8..37ddb230eb 100644 --- a/test/built-ins/DataView/prototype/setFloat64/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setFloat64/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Set values on little endian order info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setFloat64/set-values-return-undefined.js index 13a1b62a2a..f3f26ce8a9 100644 --- a/test/built-ins/DataView/prototype/setFloat64/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setFloat64/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setFloat64/this-has-no-dataview-internal.js index ddb25b07d0..f776faccd7 100644 --- a/test/built-ins/DataView/prototype/setFloat64/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setFloat64/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/this-is-not-object.js b/test/built-ins/DataView/prototype/setFloat64/this-is-not-object.js index 2fc46c0374..e334f06927 100644 --- a/test/built-ins/DataView/prototype/setFloat64/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setFloat64/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: Throws a TypeError if this is not Object info: | 24.2.4.14 DataView.prototype.setFloat64 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setFloat64/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setFloat64/to-boolean-littleendian.js index af133c2f64..37c13f150e 100644 --- a/test/built-ins/DataView/prototype/setFloat64/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setFloat64/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setFloat64/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setFloat64/toindex-byteoffset.js index f71a517300..9444c3aa88 100644 --- a/test/built-ins/DataView/prototype/setFloat64/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setFloat64/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setfloat64 -es6id: 24.2.4.14 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setInt16/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setInt16/detached-buffer-after-number-value.js index b207d357e0..26508887a8 100644 --- a/test/built-ins/DataView/prototype/setInt16/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setInt16/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js index 04c3c53fa0..7930559194 100644 --- a/test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setInt16/detached-buffer.js b/test/built-ins/DataView/prototype/setInt16/detached-buffer.js index 9a138d0e0e..1678c84f14 100644 --- a/test/built-ins/DataView/prototype/setInt16/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setInt16/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setInt16/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setInt16/index-is-out-of-range.js index 22262e7d4d..56f6471e1b 100644 --- a/test/built-ins/DataView/prototype/setInt16/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setInt16/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setInt16/name.js b/test/built-ins/DataView/prototype/setInt16/name.js index 9732fe7c26..3a3b2d0227 100644 --- a/test/built-ins/DataView/prototype/setInt16/name.js +++ b/test/built-ins/DataView/prototype/setInt16/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > DataView.prototype.setInt16.name is "setInt16". info: | diff --git a/test/built-ins/DataView/prototype/setInt16/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setInt16/negative-byteoffset-throws.js index 84778b720a..2137e68a35 100644 --- a/test/built-ins/DataView/prototype/setInt16/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setInt16/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setInt16/no-value-arg.js b/test/built-ins/DataView/prototype/setInt16/no-value-arg.js index 7e8457af33..f4ac4aeb6e 100644 --- a/test/built-ins/DataView/prototype/setInt16/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setInt16/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset-symbol.js index bb7f133b02..c8c76bc8aa 100644 --- a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset.js index f0b1d1081a..2784db6e29 100644 --- a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value-symbol.js index e1cea6e5b9..14d7868b14 100644 --- a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value.js index ec73bfad64..dc57f4bdb2 100644 --- a/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setInt16/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt16/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setInt16/set-values-little-endian-order.js index e37acf28ce..3aaf02843f 100644 --- a/test/built-ins/DataView/prototype/setInt16/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setInt16/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Set values on the little endian order info: | diff --git a/test/built-ins/DataView/prototype/setInt16/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setInt16/set-values-return-undefined.js index e7fad566a0..7d7a86f5fd 100644 --- a/test/built-ins/DataView/prototype/setInt16/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setInt16/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setInt16/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setInt16/this-has-no-dataview-internal.js index ae6ac73fbc..7fbe27d765 100644 --- a/test/built-ins/DataView/prototype/setInt16/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setInt16/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setInt16/this-is-not-object.js b/test/built-ins/DataView/prototype/setInt16/this-is-not-object.js index 71570e7ca5..d850ec0e8d 100644 --- a/test/built-ins/DataView/prototype/setInt16/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setInt16/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: Throws a TypeError if this is not Object info: | 24.2.4.16 DataView.prototype.setInt16 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setInt16/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setInt16/to-boolean-littleendian.js index 45aa363254..7315b10c46 100644 --- a/test/built-ins/DataView/prototype/setInt16/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setInt16/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setInt16/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setInt16/toindex-byteoffset.js index 33864075fe..a7855bdc7a 100644 --- a/test/built-ins/DataView/prototype/setInt16/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt16/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint16 -es6id: 24.2.4.16 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setInt32/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setInt32/detached-buffer-after-number-value.js index eddddc54f8..8f6fb277c0 100644 --- a/test/built-ins/DataView/prototype/setInt32/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setInt32/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js index 6fa4663dd5..e838acc46a 100644 --- a/test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setInt32/detached-buffer.js b/test/built-ins/DataView/prototype/setInt32/detached-buffer.js index 1c96bf0285..ae60fa638a 100644 --- a/test/built-ins/DataView/prototype/setInt32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setInt32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setInt32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setInt32/index-is-out-of-range.js index bcea2aa9de..cf7bc0297f 100644 --- a/test/built-ins/DataView/prototype/setInt32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setInt32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setInt32/name.js b/test/built-ins/DataView/prototype/setInt32/name.js index 9617d611c7..aae5545143 100644 --- a/test/built-ins/DataView/prototype/setInt32/name.js +++ b/test/built-ins/DataView/prototype/setInt32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > DataView.prototype.setInt32.name is "setInt32". info: | diff --git a/test/built-ins/DataView/prototype/setInt32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setInt32/negative-byteoffset-throws.js index db2e5c428c..3eec6b370c 100644 --- a/test/built-ins/DataView/prototype/setInt32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setInt32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setInt32/no-value-arg.js b/test/built-ins/DataView/prototype/setInt32/no-value-arg.js index c1acc24b61..11b0b17f18 100644 --- a/test/built-ins/DataView/prototype/setInt32/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setInt32/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset-symbol.js index 84033252e2..50682139c7 100644 --- a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset.js index 8bcfeea289..6c170cd6b7 100644 --- a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value-symbol.js index ccf2c949ce..40d3a23c31 100644 --- a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value.js index 198aaafd64..4e6c9f1f9f 100644 --- a/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setInt32/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt32/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setInt32/set-values-little-endian-order.js index cdbe72571e..d52a9db756 100644 --- a/test/built-ins/DataView/prototype/setInt32/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setInt32/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Set values on the little endian order info: | diff --git a/test/built-ins/DataView/prototype/setInt32/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setInt32/set-values-return-undefined.js index 895e1060ed..b4c6585f80 100644 --- a/test/built-ins/DataView/prototype/setInt32/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setInt32/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setInt32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setInt32/this-has-no-dataview-internal.js index 96dc4d6786..139a682584 100644 --- a/test/built-ins/DataView/prototype/setInt32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setInt32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setInt32/this-is-not-object.js b/test/built-ins/DataView/prototype/setInt32/this-is-not-object.js index b93f4a0403..f3e3e038f2 100644 --- a/test/built-ins/DataView/prototype/setInt32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setInt32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: Throws a TypeError if this is not Object info: | 24.2.4.17 DataView.prototype.setInt32 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setInt32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setInt32/to-boolean-littleendian.js index 2ef44c4db8..c4c72507b2 100644 --- a/test/built-ins/DataView/prototype/setInt32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setInt32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setInt32/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setInt32/toindex-byteoffset.js index 0d71d4dfbc..46672009a7 100644 --- a/test/built-ins/DataView/prototype/setInt32/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt32/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint32 -es6id: 24.2.4.17 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setInt8/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setInt8/detached-buffer-after-number-value.js index bc710830ed..ef6f40df40 100644 --- a/test/built-ins/DataView/prototype/setInt8/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setInt8/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js index 6fe8abf4c2..8a58707328 100644 --- a/test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setInt8/detached-buffer.js b/test/built-ins/DataView/prototype/setInt8/detached-buffer.js index 8742259d04..036f014da5 100644 --- a/test/built-ins/DataView/prototype/setInt8/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setInt8/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setInt8/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setInt8/index-is-out-of-range.js index d61669fb33..63b20c2d2f 100644 --- a/test/built-ins/DataView/prototype/setInt8/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setInt8/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setInt8/length.js b/test/built-ins/DataView/prototype/setInt8/length.js index 88551c70da..78df74eaaa 100644 --- a/test/built-ins/DataView/prototype/setInt8/length.js +++ b/test/built-ins/DataView/prototype/setInt8/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > DataView.prototype.setInt8.length is 2. info: | diff --git a/test/built-ins/DataView/prototype/setInt8/name.js b/test/built-ins/DataView/prototype/setInt8/name.js index 5815014915..fbc3cc2c8f 100644 --- a/test/built-ins/DataView/prototype/setInt8/name.js +++ b/test/built-ins/DataView/prototype/setInt8/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > DataView.prototype.setInt8.name is "setInt8". info: | diff --git a/test/built-ins/DataView/prototype/setInt8/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setInt8/negative-byteoffset-throws.js index 5709e2ecc0..25ea7c9acb 100644 --- a/test/built-ins/DataView/prototype/setInt8/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setInt8/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setInt8/no-value-arg.js b/test/built-ins/DataView/prototype/setInt8/no-value-arg.js index 833d6ab35d..e77a326133 100644 --- a/test/built-ins/DataView/prototype/setInt8/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setInt8/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset-symbol.js index 66013d0659..74fec8fbb2 100644 --- a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset.js index 21c76e7a07..8d97795a74 100644 --- a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value-symbol.js index 8945b405ad..a478ffe8fd 100644 --- a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value.js index 0cfe5cf66c..065dd9e435 100644 --- a/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setInt8/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setInt8/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setInt8/set-values-return-undefined.js index 76d32b97b2..3c94620054 100644 --- a/test/built-ins/DataView/prototype/setInt8/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setInt8/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setInt8/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setInt8/this-has-no-dataview-internal.js index 2468a3fc3e..db086dfa16 100644 --- a/test/built-ins/DataView/prototype/setInt8/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setInt8/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setInt8/this-is-not-object.js b/test/built-ins/DataView/prototype/setInt8/this-is-not-object.js index bffb24b9e2..6c01fe5a50 100644 --- a/test/built-ins/DataView/prototype/setInt8/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setInt8/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: Throws a TypeError if this is not Object info: | 24.2.4.15 DataView.prototype.setInt8 ( byteOffset, value ) diff --git a/test/built-ins/DataView/prototype/setInt8/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setInt8/toindex-byteoffset.js index b9022740c2..1d3f39ec93 100644 --- a/test/built-ins/DataView/prototype/setInt8/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setInt8/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setint8 -es6id: 24.2.4.15 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setUint16/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setUint16/detached-buffer-after-number-value.js index bc3f30392d..ffa6e387b5 100644 --- a/test/built-ins/DataView/prototype/setUint16/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setUint16/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js index 203c619d77..b5b5f7fb27 100644 --- a/test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setUint16/detached-buffer.js b/test/built-ins/DataView/prototype/setUint16/detached-buffer.js index 15e7b3372f..ccb621c386 100644 --- a/test/built-ins/DataView/prototype/setUint16/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setUint16/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setUint16/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setUint16/index-is-out-of-range.js index 0ba08b3ff4..705e891fa9 100644 --- a/test/built-ins/DataView/prototype/setUint16/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setUint16/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setUint16/name.js b/test/built-ins/DataView/prototype/setUint16/name.js index ceefa5f3a6..8b2710092e 100644 --- a/test/built-ins/DataView/prototype/setUint16/name.js +++ b/test/built-ins/DataView/prototype/setUint16/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > DataView.prototype.setUint16.name is "setUint16". info: | diff --git a/test/built-ins/DataView/prototype/setUint16/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setUint16/negative-byteoffset-throws.js index 282a71565a..54267ba2de 100644 --- a/test/built-ins/DataView/prototype/setUint16/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setUint16/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setUint16/no-value-arg.js b/test/built-ins/DataView/prototype/setUint16/no-value-arg.js index 0cc91d30b2..b2c6df929a 100644 --- a/test/built-ins/DataView/prototype/setUint16/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setUint16/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset-symbol.js index 36f7e041e0..9651ff3255 100644 --- a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset.js index fdf21f0626..b3dd30a725 100644 --- a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value-symbol.js index 0933b52285..0225c7cb79 100644 --- a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value.js index da2b7df508..c9b27ee0dc 100644 --- a/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setUint16/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint16/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setUint16/set-values-little-endian-order.js index b49a6ab38e..2bfd2d2ed5 100644 --- a/test/built-ins/DataView/prototype/setUint16/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setUint16/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Set values on the little endian order info: | diff --git a/test/built-ins/DataView/prototype/setUint16/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setUint16/set-values-return-undefined.js index 05f43011af..902624bc43 100644 --- a/test/built-ins/DataView/prototype/setUint16/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setUint16/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setUint16/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setUint16/this-has-no-dataview-internal.js index 88f84e3a72..71c423a374 100644 --- a/test/built-ins/DataView/prototype/setUint16/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setUint16/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setUint16/this-is-not-object.js b/test/built-ins/DataView/prototype/setUint16/this-is-not-object.js index 78ba5d070c..b1dc116594 100644 --- a/test/built-ins/DataView/prototype/setUint16/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setUint16/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: Throws a TypeError if this is not Object info: | 24.2.4.19 DataView.prototype.setUint16 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setUint16/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setUint16/to-boolean-littleendian.js index d9c0c54316..b7f2bae9d8 100644 --- a/test/built-ins/DataView/prototype/setUint16/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setUint16/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setUint16/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setUint16/toindex-byteoffset.js index 703fdedba8..f283a92ed6 100644 --- a/test/built-ins/DataView/prototype/setUint16/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint16/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint16 -es6id: 24.2.4.19 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setUint32/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setUint32/detached-buffer-after-number-value.js index 471de56a3f..02c65e6598 100644 --- a/test/built-ins/DataView/prototype/setUint32/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setUint32/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js index a54d239559..051c4e376f 100644 --- a/test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setUint32/detached-buffer.js b/test/built-ins/DataView/prototype/setUint32/detached-buffer.js index e13f02135e..6fa5ecbf35 100644 --- a/test/built-ins/DataView/prototype/setUint32/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setUint32/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setUint32/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setUint32/index-is-out-of-range.js index dc72c9e986..3e253c99df 100644 --- a/test/built-ins/DataView/prototype/setUint32/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setUint32/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setUint32/name.js b/test/built-ins/DataView/prototype/setUint32/name.js index b5a3f50f81..ec64e64b2a 100644 --- a/test/built-ins/DataView/prototype/setUint32/name.js +++ b/test/built-ins/DataView/prototype/setUint32/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > DataView.prototype.setUint32.name is "setUint32". info: | diff --git a/test/built-ins/DataView/prototype/setUint32/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setUint32/negative-byteoffset-throws.js index 19baa9bf0b..029d037ae9 100644 --- a/test/built-ins/DataView/prototype/setUint32/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setUint32/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setUint32/no-value-arg.js b/test/built-ins/DataView/prototype/setUint32/no-value-arg.js index bbea0ef9e9..eda381851f 100644 --- a/test/built-ins/DataView/prototype/setUint32/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setUint32/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset-symbol.js index 7cdf17a575..1eaec8731e 100644 --- a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset.js index eacf7a56f4..ae7a9e512a 100644 --- a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value-symbol.js index 2fd42656f5..65b6d59492 100644 --- a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value.js index 9d350b5118..385092ac92 100644 --- a/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setUint32/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint32/set-values-little-endian-order.js b/test/built-ins/DataView/prototype/setUint32/set-values-little-endian-order.js index 264f065578..0bde467bdc 100644 --- a/test/built-ins/DataView/prototype/setUint32/set-values-little-endian-order.js +++ b/test/built-ins/DataView/prototype/setUint32/set-values-little-endian-order.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Set values on the little endian order info: | diff --git a/test/built-ins/DataView/prototype/setUint32/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setUint32/set-values-return-undefined.js index a5ea2ed10f..97d4c18147 100644 --- a/test/built-ins/DataView/prototype/setUint32/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setUint32/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setUint32/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setUint32/this-has-no-dataview-internal.js index 6654c87eff..329b0d7828 100644 --- a/test/built-ins/DataView/prototype/setUint32/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setUint32/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setUint32/this-is-not-object.js b/test/built-ins/DataView/prototype/setUint32/this-is-not-object.js index 8709c37f41..964244f8dc 100644 --- a/test/built-ins/DataView/prototype/setUint32/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setUint32/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: Throws a TypeError if this is not Object info: | 24.2.4.20 DataView.prototype.setUint32 ( byteOffset, value [ , littleEndian ] ) diff --git a/test/built-ins/DataView/prototype/setUint32/to-boolean-littleendian.js b/test/built-ins/DataView/prototype/setUint32/to-boolean-littleendian.js index 5ed4627e7f..f1a4afbe8e 100644 --- a/test/built-ins/DataView/prototype/setUint32/to-boolean-littleendian.js +++ b/test/built-ins/DataView/prototype/setUint32/to-boolean-littleendian.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > Boolean littleEndian argument coerced in ToBoolean info: | diff --git a/test/built-ins/DataView/prototype/setUint32/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setUint32/toindex-byteoffset.js index c048f39c9d..a08149f368 100644 --- a/test/built-ins/DataView/prototype/setUint32/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint32/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint32 -es6id: 24.2.4.20 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/prototype/setUint8/detached-buffer-after-number-value.js b/test/built-ins/DataView/prototype/setUint8/detached-buffer-after-number-value.js index dfa1a4f837..fddc1f8197 100644 --- a/test/built-ins/DataView/prototype/setUint8/detached-buffer-after-number-value.js +++ b/test/built-ins/DataView/prototype/setUint8/detached-buffer-after-number-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Detached buffer is checked after ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js b/test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js index 05cd2a91a1..33a8e00858 100644 --- a/test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Detached buffer is checked before out of range byteOffset's value info: | diff --git a/test/built-ins/DataView/prototype/setUint8/detached-buffer.js b/test/built-ins/DataView/prototype/setUint8/detached-buffer.js index 53aaffa8e3..996ae2d3a3 100644 --- a/test/built-ins/DataView/prototype/setUint8/detached-buffer.js +++ b/test/built-ins/DataView/prototype/setUint8/detached-buffer.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Throws a TypeError if buffer is detached info: | diff --git a/test/built-ins/DataView/prototype/setUint8/index-is-out-of-range.js b/test/built-ins/DataView/prototype/setUint8/index-is-out-of-range.js index 0e51f7a722..88a4c878e2 100644 --- a/test/built-ins/DataView/prototype/setUint8/index-is-out-of-range.js +++ b/test/built-ins/DataView/prototype/setUint8/index-is-out-of-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Throws a RangeError if getIndex + elementSize > viewSize info: | diff --git a/test/built-ins/DataView/prototype/setUint8/length.js b/test/built-ins/DataView/prototype/setUint8/length.js index ad70e33042..58bbf425cb 100644 --- a/test/built-ins/DataView/prototype/setUint8/length.js +++ b/test/built-ins/DataView/prototype/setUint8/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > DataView.prototype.setUint8.length is 2. info: | diff --git a/test/built-ins/DataView/prototype/setUint8/name.js b/test/built-ins/DataView/prototype/setUint8/name.js index b32d3bda3f..7576f4f5ba 100644 --- a/test/built-ins/DataView/prototype/setUint8/name.js +++ b/test/built-ins/DataView/prototype/setUint8/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > DataView.prototype.setUint8.name is "setUint8". info: | diff --git a/test/built-ins/DataView/prototype/setUint8/negative-byteoffset-throws.js b/test/built-ins/DataView/prototype/setUint8/negative-byteoffset-throws.js index 23f837fbee..331e3997fa 100644 --- a/test/built-ins/DataView/prototype/setUint8/negative-byteoffset-throws.js +++ b/test/built-ins/DataView/prototype/setUint8/negative-byteoffset-throws.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Throws a RangeError if getIndex < 0 info: | diff --git a/test/built-ins/DataView/prototype/setUint8/no-value-arg.js b/test/built-ins/DataView/prototype/setUint8/no-value-arg.js index ef5683d884..292684a3d7 100644 --- a/test/built-ins/DataView/prototype/setUint8/no-value-arg.js +++ b/test/built-ins/DataView/prototype/setUint8/no-value-arg.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Set value as undefined (cast to 0) when value argument is not present info: | diff --git a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset-symbol.js index a9c39045fe..3cb7e0bcd0 100644 --- a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Return abrupt from ToNumber(symbol byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset.js b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset.js index a3f584fbc9..69dc3d419a 100644 --- a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Return abrupt from ToNumber(byteOffset) info: | diff --git a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value-symbol.js b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value-symbol.js index 68a77973ab..e9e68076d9 100644 --- a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value-symbol.js +++ b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value-symbol.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Return abrupt from ToNumber(symbol value) info: | diff --git a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value.js b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value.js index 4e0850fef5..f37e3bc155 100644 --- a/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value.js +++ b/test/built-ins/DataView/prototype/setUint8/return-abrupt-from-tonumber-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Return abrupt from ToNumber(value) info: | diff --git a/test/built-ins/DataView/prototype/setUint8/set-values-return-undefined.js b/test/built-ins/DataView/prototype/setUint8/set-values-return-undefined.js index 701219bb96..e90ec08f6d 100644 --- a/test/built-ins/DataView/prototype/setUint8/set-values-return-undefined.js +++ b/test/built-ins/DataView/prototype/setUint8/set-values-return-undefined.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Set values and return undefined info: | diff --git a/test/built-ins/DataView/prototype/setUint8/this-has-no-dataview-internal.js b/test/built-ins/DataView/prototype/setUint8/this-has-no-dataview-internal.js index 7387ceca44..d2b99371e6 100644 --- a/test/built-ins/DataView/prototype/setUint8/this-has-no-dataview-internal.js +++ b/test/built-ins/DataView/prototype/setUint8/this-has-no-dataview-internal.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > Throws a TypeError if this does not have a [[DataView]] internal slot info: | diff --git a/test/built-ins/DataView/prototype/setUint8/this-is-not-object.js b/test/built-ins/DataView/prototype/setUint8/this-is-not-object.js index 12e6a9cb32..744fef1dab 100644 --- a/test/built-ins/DataView/prototype/setUint8/this-is-not-object.js +++ b/test/built-ins/DataView/prototype/setUint8/this-is-not-object.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: Throws a TypeError if this is not Object info: | 24.2.4.18 DataView.prototype.setUint8 ( byteOffset, value ) diff --git a/test/built-ins/DataView/prototype/setUint8/toindex-byteoffset.js b/test/built-ins/DataView/prototype/setUint8/toindex-byteoffset.js index 426d43befe..3dbd0a8393 100644 --- a/test/built-ins/DataView/prototype/setUint8/toindex-byteoffset.js +++ b/test/built-ins/DataView/prototype/setUint8/toindex-byteoffset.js @@ -3,7 +3,6 @@ /*--- esid: sec-dataview.prototype.setuint8 -es6id: 24.2.4.18 description: > ToIndex conversions on byteOffset info: | diff --git a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-sab.js b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-sab.js index 241f0b4e14..44d71218c6 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-sab.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToLength(byteLength) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol-sab.js b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol-sab.js index a1ec74a45e..a26cf5169f 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol-sab.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToLength(symbol byteLength) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol.js b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol.js index 5672bd8b50..89839d593e 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToLength(symbol byteLength) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-bytelength.js b/test/built-ins/DataView/return-abrupt-tonumber-bytelength.js index 328cb21d54..d116b691c7 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-bytelength.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-bytelength.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToLength(byteLength) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-sab.js b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-sab.js index 9b4e85d60b..49acb3974b 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-sab.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToNumber(byteOffset) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol-sab.js b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol-sab.js index b4c7107d6e..e32df78cb8 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol-sab.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToNumber(symbol byteOffset) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol.js b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol.js index 53d484e841..5b233d9ca4 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToNumber(symbol byteOffset) diff --git a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset.js b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset.js index af5e48261d..6689bcc369 100644 --- a/test/built-ins/DataView/return-abrupt-tonumber-byteoffset.js +++ b/test/built-ins/DataView/return-abrupt-tonumber-byteoffset.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Return abrupt from ToNumber(byteOffset) diff --git a/test/built-ins/DataView/return-instance-sab.js b/test/built-ins/DataView/return-instance-sab.js index b306046e9a..f2ae535051 100644 --- a/test/built-ins/DataView/return-instance-sab.js +++ b/test/built-ins/DataView/return-instance-sab.js @@ -3,7 +3,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Returns new instance diff --git a/test/built-ins/DataView/return-instance.js b/test/built-ins/DataView/return-instance.js index 2628419107..82e22279e5 100644 --- a/test/built-ins/DataView/return-instance.js +++ b/test/built-ins/DataView/return-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 24.2.2.1 esid: sec-dataview-buffer-byteoffset-bytelength description: > Returns new instance diff --git a/test/built-ins/Date/15.9.1.15-1.js b/test/built-ins/Date/15.9.1.15-1.js index 395a20bbc8..616bbc7fde 100644 --- a/test/built-ins/Date/15.9.1.15-1.js +++ b/test/built-ins/Date/15.9.1.15-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-date-time-string-format -es5id: 15.9.1.15-1 description: > Date Time String Format - specified default values will be set for all optional fields(MM, DD, mm, ss and time zone) when they are diff --git a/test/built-ins/Date/S15.9.3.1_A1_T1.js b/test/built-ins/Date/S15.9.3.1_A1_T1.js index 7e6baff635..7e6578b059 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T1.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T1.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T1 description: 2 arguments, (year, month) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A1_T2.js b/test/built-ins/Date/S15.9.3.1_A1_T2.js index 3265980f92..710cae0078 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T2.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T2.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T2 description: 3 arguments, (year, month, date) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A1_T3.js b/test/built-ins/Date/S15.9.3.1_A1_T3.js index 875e3a8a4d..241c444ac0 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T3.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T3.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T3 description: 4 arguments, (year, month, date, hours) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A1_T4.js b/test/built-ins/Date/S15.9.3.1_A1_T4.js index ef574b9651..c2993b47fe 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T4.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T4.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T4 description: 5 arguments, (year, month, date, hours, minutes) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A1_T5.js b/test/built-ins/Date/S15.9.3.1_A1_T5.js index 0f1d0df2c8..09e866eeef 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T5.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T5.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T5 description: 6 arguments, (year, month, date, hours, minutes, seconds) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A1_T6.js b/test/built-ins/Date/S15.9.3.1_A1_T6.js index dac4065f5e..ab772ad51d 100644 --- a/test/built-ins/Date/S15.9.3.1_A1_T6.js +++ b/test/built-ins/Date/S15.9.3.1_A1_T6.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initializes the newly created object esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A1_T6 description: 7 arguments, (year, month, date, hours, minutes, seconds, ms) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T1.js b/test/built-ins/Date/S15.9.3.1_A2_T1.js index cf02c44a1a..111e5d1ce0 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T1.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T1.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T1 description: 2 arguments, (year, month) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T2.js b/test/built-ins/Date/S15.9.3.1_A2_T2.js index b10c645855..9fe0bece91 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T2.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T2.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T2 description: 3 arguments, (year, month, date) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T3.js b/test/built-ins/Date/S15.9.3.1_A2_T3.js index bb2848b632..5614b24903 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T3.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T3.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T3 description: 4 arguments, (year, month, date, hours) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T4.js b/test/built-ins/Date/S15.9.3.1_A2_T4.js index b1549d400b..e0bda5a030 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T4.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T4.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T4 description: 5 arguments, (year, month, date, hours, minutes) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T5.js b/test/built-ins/Date/S15.9.3.1_A2_T5.js index 8b34dd84b4..664c418e90 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T5.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T5.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T5 description: 6 arguments, (year, month, date, hours, minutes, seconds) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A2_T6.js b/test/built-ins/Date/S15.9.3.1_A2_T6.js index 8fde48a2fa..08ed11115e 100644 --- a/test/built-ins/Date/S15.9.3.1_A2_T6.js +++ b/test/built-ins/Date/S15.9.3.1_A2_T6.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A2_T6 description: 7 arguments, (year, month, date, hours, minutes, seconds, ms) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A3_T1.1.js b/test/built-ins/Date/S15.9.3.1_A3_T1.1.js index 4bb37dbb07..5b50387a5a 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T1.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T1.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T1.1 description: > Test based on delete prototype.toString - 2 arguments, (year, month) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T1.2.js b/test/built-ins/Date/S15.9.3.1_A3_T1.2.js index 5c2ae0e42d..d4f34b6b78 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T1.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T1.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T1.2 description: > Test based on overwriting prototype.toString - 2 arguments, (year, month) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T2.1.js b/test/built-ins/Date/S15.9.3.1_A3_T2.1.js index be1c9e3cd4..7f658c32dd 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T2.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T2.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T2.1 description: > Test based on delete prototype.toString - 3 arguments, (year, month, date) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T2.2.js b/test/built-ins/Date/S15.9.3.1_A3_T2.2.js index 8b79d3e0a1..fbb79313e1 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T2.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T2.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T2.2 description: > Test based on overwriting prototype.toString - 3 arguments, (year, month, date) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T3.1.js b/test/built-ins/Date/S15.9.3.1_A3_T3.1.js index 856c74999d..3b51f063b9 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T3.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T3.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T3.1 description: > Test based on delete prototype.toString - 4 arguments, (year, month, date, hours) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T3.2.js b/test/built-ins/Date/S15.9.3.1_A3_T3.2.js index 895328b028..3c5a4dee29 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T3.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T3.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T3.2 description: > Test based on overwriting prototype.toString - 4 arguments, (year, month, date, hours) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T4.1.js b/test/built-ins/Date/S15.9.3.1_A3_T4.1.js index 1c890e7024..f4030d1dc8 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T4.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T4.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T4.1 description: > Test based on delete prototype.toString - 5 arguments, (year, month, date, hours, minutes) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T4.2.js b/test/built-ins/Date/S15.9.3.1_A3_T4.2.js index bde461e9e3..25d320140d 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T4.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T4.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T4.2 description: > Test based on overwriting prototype.toString - 5 arguments, (year, month, date, hours, minutes) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T5.1.js b/test/built-ins/Date/S15.9.3.1_A3_T5.1.js index e12ab228e2..8b9fdabf28 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T5.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T5.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T5.1 description: 6 arguments, (year, month, date, hours, minutes, seconds) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A3_T5.2.js b/test/built-ins/Date/S15.9.3.1_A3_T5.2.js index e8dcc904f5..9e4ca9eaea 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T5.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T5.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T5.2 description: > Test based on overwriting prototype.toString - 6 arguments, (year, month, date, hours, minutes, seconds) diff --git a/test/built-ins/Date/S15.9.3.1_A3_T6.1.js b/test/built-ins/Date/S15.9.3.1_A3_T6.1.js index c40ea46f9b..2b4a7c15b8 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T6.1.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T6.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T6.1 description: 7 arguments, (year, month, date, hours, minutes, seconds, ms) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A3_T6.2.js b/test/built-ins/Date/S15.9.3.1_A3_T6.2.js index 210e495649..5478976d9a 100644 --- a/test/built-ins/Date/S15.9.3.1_A3_T6.2.js +++ b/test/built-ins/Date/S15.9.3.1_A3_T6.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A3_T6.2 description: > Test based on overwriting prototype.toString - 7 arguments, (year, month, date, hours, minutes, seconds, ms) diff --git a/test/built-ins/Date/S15.9.3.1_A4_T1.js b/test/built-ins/Date/S15.9.3.1_A4_T1.js index 890ce66430..f109c9f293 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T1.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T1.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T1 description: 2 arguments, (year, month) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A4_T2.js b/test/built-ins/Date/S15.9.3.1_A4_T2.js index bc3fc25037..0e49402b97 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T2.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T2.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T2 description: 3 arguments, (year, month, date) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A4_T3.js b/test/built-ins/Date/S15.9.3.1_A4_T3.js index 2280edf5df..fb69c201cc 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T3.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T3.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T3 description: 4 arguments, (year, month, date, hours) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A4_T4.js b/test/built-ins/Date/S15.9.3.1_A4_T4.js index 49a0d15d2d..d1db88565a 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T4.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T4.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T4 description: 5 arguments, (year, month, date, hours, minutes) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A4_T5.js b/test/built-ins/Date/S15.9.3.1_A4_T5.js index f7bf7f2042..29d5935944 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T5.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T5.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T5 description: 6 arguments, (year, month, date, hours, minutes, seconds) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A4_T6.js b/test/built-ins/Date/S15.9.3.1_A4_T6.js index 8eebc2ec66..33c941ae95 100644 --- a/test/built-ins/Date/S15.9.3.1_A4_T6.js +++ b/test/built-ins/Date/S15.9.3.1_A4_T6.js @@ -13,7 +13,6 @@ info: | 6. If seconds is supplied use ToNumber(seconds) 7. If ms is supplied use ToNumber(ms) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A4_T6 description: 7 arguments, (year, month, date, hours, minutes, seconds, ms) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T1.js b/test/built-ins/Date/S15.9.3.1_A5_T1.js index e9f2d545c6..18518dda0b 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T1.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T1.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T1 description: 2 arguments, (year, month) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T2.js b/test/built-ins/Date/S15.9.3.1_A5_T2.js index 116b0a1e73..05b80d0c2f 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T2.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T2.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T2 description: 3 arguments, (year, month, date) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T3.js b/test/built-ins/Date/S15.9.3.1_A5_T3.js index a53e0ccea6..c026b18af6 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T3.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T3.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T3 description: 4 arguments, (year, month, date, hours) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T4.js b/test/built-ins/Date/S15.9.3.1_A5_T4.js index a7b015a30a..3191aa6a48 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T4.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T4.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T4 description: 5 arguments, (year, month, date, hours, minutes) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T5.js b/test/built-ins/Date/S15.9.3.1_A5_T5.js index e9db299cc1..c4ab7ee441 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T5.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T5.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T5 description: 6 arguments, (year, month, date, hours, minutes, seconds) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A5_T6.js b/test/built-ins/Date/S15.9.3.1_A5_T6.js index c98d445360..f50aa228fe 100644 --- a/test/built-ins/Date/S15.9.3.1_A5_T6.js +++ b/test/built-ins/Date/S15.9.3.1_A5_T6.js @@ -12,7 +12,6 @@ info: | 12. Set the [[Value]] property of the newly constructed object to TimeClip(UTC(Result(11))) esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A5_T6 description: 7 arguments, (year, month, date, hours, minutes, seconds, ms) includes: [assertRelativeDateMs.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A6_T1.js b/test/built-ins/Date/S15.9.3.1_A6_T1.js index 90c8ac12d7..7fd62c3924 100644 --- a/test/built-ins/Date/S15.9.3.1_A6_T1.js +++ b/test/built-ins/Date/S15.9.3.1_A6_T1.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object with supplied "undefined" argument should be NaN esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A6_T1 description: 2 arguments, (year, month) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A6_T2.js b/test/built-ins/Date/S15.9.3.1_A6_T2.js index cc3c1a2894..17ae6eaca3 100644 --- a/test/built-ins/Date/S15.9.3.1_A6_T2.js +++ b/test/built-ins/Date/S15.9.3.1_A6_T2.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object with supplied "undefined" argument should be NaN esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A6_T2 description: 3 arguments, (year, month, date) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A6_T3.js b/test/built-ins/Date/S15.9.3.1_A6_T3.js index f7d549bb99..c6f55a2c5f 100644 --- a/test/built-ins/Date/S15.9.3.1_A6_T3.js +++ b/test/built-ins/Date/S15.9.3.1_A6_T3.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object with supplied "undefined" argument should be NaN esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A6_T3 description: 4 arguments, (year, month, date, hours) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A6_T4.js b/test/built-ins/Date/S15.9.3.1_A6_T4.js index 69d00640c3..a615aaf8bd 100644 --- a/test/built-ins/Date/S15.9.3.1_A6_T4.js +++ b/test/built-ins/Date/S15.9.3.1_A6_T4.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object with supplied "undefined" argument should be NaN esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A6_T4 description: 5 arguments, (year, month, date, hours, minutes) ---*/ diff --git a/test/built-ins/Date/S15.9.3.1_A6_T5.js b/test/built-ins/Date/S15.9.3.1_A6_T5.js index ae5c324d77..9c986341e4 100644 --- a/test/built-ins/Date/S15.9.3.1_A6_T5.js +++ b/test/built-ins/Date/S15.9.3.1_A6_T5.js @@ -6,7 +6,6 @@ info: | The [[Value]] property of the newly constructed object with supplied "undefined" argument should be NaN esid: sec-date-year-month-date-hours-minutes-seconds-ms -es5id: 15.9.3.1_A6_T5 description: 6 arguments, (year, month, date, hours, minutes, seconds) ---*/ diff --git a/test/built-ins/Date/S15.9.3.2_A1_T1.js b/test/built-ins/Date/S15.9.3.2_A1_T1.js index bd82eadd9a..2904052101 100644 --- a/test/built-ins/Date/S15.9.3.2_A1_T1.js +++ b/test/built-ins/Date/S15.9.3.2_A1_T1.js @@ -6,7 +6,6 @@ info: | When Date is called as part of a new expression it is a constructor: it initialises the newly created object esid: sec-date-value -es5id: 15.9.3.2_A1_T1 description: Checking types of newly created objects and it values includes: [dateConstants.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.2_A2_T1.js b/test/built-ins/Date/S15.9.3.2_A2_T1.js index 80e2dacd87..f0b6538c32 100644 --- a/test/built-ins/Date/S15.9.3.2_A2_T1.js +++ b/test/built-ins/Date/S15.9.3.2_A2_T1.js @@ -7,7 +7,6 @@ info: | is set to the original Date prototype object, the one that is the initial value of Date.prototype esid: sec-date-value -es5id: 15.9.3.2_A2_T1 description: Checking Date.prototype property of newly constructed objects includes: [dateConstants.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.2_A3_T1.1.js b/test/built-ins/Date/S15.9.3.2_A3_T1.1.js index 5ef638f537..6ce49d3516 100644 --- a/test/built-ins/Date/S15.9.3.2_A3_T1.1.js +++ b/test/built-ins/Date/S15.9.3.2_A3_T1.1.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-value -es5id: 15.9.3.2_A3_T1.1 description: Test based on delete prototype.toString includes: [dateConstants.js] ---*/ diff --git a/test/built-ins/Date/S15.9.3.2_A3_T1.2.js b/test/built-ins/Date/S15.9.3.2_A3_T1.2.js index fe748a8c62..eda085b546 100644 --- a/test/built-ins/Date/S15.9.3.2_A3_T1.2.js +++ b/test/built-ins/Date/S15.9.3.2_A3_T1.2.js @@ -6,7 +6,6 @@ info: | The [[Class]] property of the newly constructed object is set to "Date" esid: sec-date-value -es5id: 15.9.3.2_A3_T1.2 description: Test based on overwriting prototype.toString includes: [dateConstants.js] ---*/ diff --git a/test/built-ins/Date/S15.9.4_A1.js b/test/built-ins/Date/S15.9.4_A1.js index 7957670f63..6416f306e8 100644 --- a/test/built-ins/Date/S15.9.4_A1.js +++ b/test/built-ins/Date/S15.9.4_A1.js @@ -4,7 +4,6 @@ /*--- info: The Date constructor has the property "prototype" esid: sec-date-constructor -es5id: 15.9.4_A1 description: Checking existence of the property "prototype" ---*/ diff --git a/test/built-ins/Date/S15.9.4_A2.js b/test/built-ins/Date/S15.9.4_A2.js index dd0652d887..dc249cd634 100644 --- a/test/built-ins/Date/S15.9.4_A2.js +++ b/test/built-ins/Date/S15.9.4_A2.js @@ -4,7 +4,6 @@ /*--- info: The Date constructor has the property "parse" esid: sec-date-constructor -es5id: 15.9.4_A2 description: Checking existence of the property "parse" ---*/ diff --git a/test/built-ins/Date/S15.9.4_A3.js b/test/built-ins/Date/S15.9.4_A3.js index 162bf922fb..bfe72b5632 100644 --- a/test/built-ins/Date/S15.9.4_A3.js +++ b/test/built-ins/Date/S15.9.4_A3.js @@ -4,7 +4,6 @@ /*--- info: The Date constructor has the property "UTC" esid: sec-date-constructor -es5id: 15.9.4_A3 description: Checking existence of the property "UTC" ---*/ diff --git a/test/built-ins/Date/S15.9.4_A4.js b/test/built-ins/Date/S15.9.4_A4.js index 8e9f87727a..18c468f988 100644 --- a/test/built-ins/Date/S15.9.4_A4.js +++ b/test/built-ins/Date/S15.9.4_A4.js @@ -6,7 +6,6 @@ info: | The value of the internal [[Prototype]] property of the Date constructor is the Function prototype object esid: sec-date-constructor -es5id: 15.9.4_A4 description: Checking Function.prototype.isPrototypeOf(Date) ---*/ diff --git a/test/built-ins/Date/S15.9.4_A5.js b/test/built-ins/Date/S15.9.4_A5.js index 066e575b0c..dbb236d52f 100644 --- a/test/built-ins/Date/S15.9.4_A5.js +++ b/test/built-ins/Date/S15.9.4_A5.js @@ -4,7 +4,6 @@ /*--- info: Date constructor has length property whose value is 7 esid: sec-date-constructor -es5id: 15.9.4_A5 description: Checking Date.length property ---*/ diff --git a/test/built-ins/Date/UTC/coercion-errors.js b/test/built-ins/Date/UTC/coercion-errors.js index bbca1753e4..908c8cb936 100644 --- a/test/built-ins/Date/UTC/coercion-errors.js +++ b/test/built-ins/Date/UTC/coercion-errors.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Abrupt completions from coercing input values info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/UTC/coercion-order.js b/test/built-ins/Date/UTC/coercion-order.js index eb1d00c5f8..2838906baa 100644 --- a/test/built-ins/Date/UTC/coercion-order.js +++ b/test/built-ins/Date/UTC/coercion-order.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Order of input coercion info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/UTC/infinity-make-day.js b/test/built-ins/Date/UTC/infinity-make-day.js index f0362a4c04..51d42027d9 100644 --- a/test/built-ins/Date/UTC/infinity-make-day.js +++ b/test/built-ins/Date/UTC/infinity-make-day.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Infinite values specified to MakeDay produce NaN info: | [...] diff --git a/test/built-ins/Date/UTC/infinity-make-time.js b/test/built-ins/Date/UTC/infinity-make-time.js index 8192d0ba3f..2d61959201 100644 --- a/test/built-ins/Date/UTC/infinity-make-time.js +++ b/test/built-ins/Date/UTC/infinity-make-time.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Infinite values specified to MakeTime produce NaN info: | [...] diff --git a/test/built-ins/Date/UTC/name.js b/test/built-ins/Date/UTC/name.js index 4d3796f80f..52fcbc2d6e 100644 --- a/test/built-ins/Date/UTC/name.js +++ b/test/built-ins/Date/UTC/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: > Date.UTC.name is "UTC". info: | diff --git a/test/built-ins/Date/UTC/nans.js b/test/built-ins/Date/UTC/nans.js index 909baa1b84..57896adff9 100644 --- a/test/built-ins/Date/UTC/nans.js +++ b/test/built-ins/Date/UTC/nans.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: NaN value handling info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/UTC/no-arg.js b/test/built-ins/Date/UTC/no-arg.js index 423548646d..51e89491e0 100644 --- a/test/built-ins/Date/UTC/no-arg.js +++ b/test/built-ins/Date/UTC/no-arg.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Tests for non optional arguments info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/UTC/overflow-make-day.js b/test/built-ins/Date/UTC/overflow-make-day.js index e79c21dd64..a51a417bb5 100644 --- a/test/built-ins/Date/UTC/overflow-make-day.js +++ b/test/built-ins/Date/UTC/overflow-make-day.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Values specified to MakeDay exceed their calendar boundaries info: | [...] diff --git a/test/built-ins/Date/UTC/overflow-make-time.js b/test/built-ins/Date/UTC/overflow-make-time.js index f917586c1d..15f1261ce6 100644 --- a/test/built-ins/Date/UTC/overflow-make-time.js +++ b/test/built-ins/Date/UTC/overflow-make-time.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Values specified to MakeTime exceed their time boundaries info: | [...] diff --git a/test/built-ins/Date/UTC/return-value.js b/test/built-ins/Date/UTC/return-value.js index c4caaa7782..29e8583913 100644 --- a/test/built-ins/Date/UTC/return-value.js +++ b/test/built-ins/Date/UTC/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Return value of `Date.UTC` info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/UTC/time-clip.js b/test/built-ins/Date/UTC/time-clip.js index 5b051f73cd..ec46b7cc08 100644 --- a/test/built-ins/Date/UTC/time-clip.js +++ b/test/built-ins/Date/UTC/time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Time clipping info: | [...] diff --git a/test/built-ins/Date/UTC/year-offset.js b/test/built-ins/Date/UTC/year-offset.js index 8771a9d742..32be30f80b 100644 --- a/test/built-ins/Date/UTC/year-offset.js +++ b/test/built-ins/Date/UTC/year-offset.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.utc -es6id: 20.3.3.4 description: Conditional offset of provided `year` value info: | 1. Let y be ? ToNumber(year). diff --git a/test/built-ins/Date/name.js b/test/built-ins/Date/name.js index 3a356d12f2..751d054259 100644 --- a/test/built-ins/Date/name.js +++ b/test/built-ins/Date/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-constructor -es6id: 20.3.2 description: Constructor "name" property descriptor info: | 17 ECMAScript Standard Built-in Objects: diff --git a/test/built-ins/Date/now/15.9.4.4-0-1.js b/test/built-ins/Date/now/15.9.4.4-0-1.js index 3b7efdeb21..64b6831420 100644 --- a/test/built-ins/Date/now/15.9.4.4-0-1.js +++ b/test/built-ins/Date/now/15.9.4.4-0-1.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.now -es5id: 15.9.4.4-0-1 description: Date.now must exist as a function ---*/ diff --git a/test/built-ins/Date/now/15.9.4.4-0-2.js b/test/built-ins/Date/now/15.9.4.4-0-2.js index 38b9b8026d..a6f251f1bc 100644 --- a/test/built-ins/Date/now/15.9.4.4-0-2.js +++ b/test/built-ins/Date/now/15.9.4.4-0-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.now -es5id: 15.9.4.4-0-2 description: Date.now must exist as a function taking 0 parameters ---*/ diff --git a/test/built-ins/Date/now/15.9.4.4-0-3.js b/test/built-ins/Date/now/15.9.4.4-0-3.js index 49c7ac4259..cf42f0f3fb 100644 --- a/test/built-ins/Date/now/15.9.4.4-0-3.js +++ b/test/built-ins/Date/now/15.9.4.4-0-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.now -es5id: 15.9.4.4-0-3 description: Date.now must exist as a function ---*/ diff --git a/test/built-ins/Date/now/15.9.4.4-0-4.js b/test/built-ins/Date/now/15.9.4.4-0-4.js index 4c71e78b51..920168c313 100644 --- a/test/built-ins/Date/now/15.9.4.4-0-4.js +++ b/test/built-ins/Date/now/15.9.4.4-0-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.now -es5id: 15.9.4.4-0-4 description: Date.now - returns number ---*/ diff --git a/test/built-ins/Date/now/name.js b/test/built-ins/Date/now/name.js index 0c8a733c47..6250e89a7b 100644 --- a/test/built-ins/Date/now/name.js +++ b/test/built-ins/Date/now/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.now -es6id: 20.3.3.1 description: > Date.now.name is "now". info: | diff --git a/test/built-ins/Date/parse/S15.9.4.2_A1_T1.js b/test/built-ins/Date/parse/S15.9.4.2_A1_T1.js index e820b95d02..16b0c26371 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A1_T1.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date property "parse" has { DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A1_T2.js b/test/built-ins/Date/parse/S15.9.4.2_A1_T2.js index 65bb436f50..fed5c795f1 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A1_T2.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date property "parse" has { DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A1_T3.js b/test/built-ins/Date/parse/S15.9.4.2_A1_T3.js index 28de1c4973..0b1c3b52da 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A1_T3.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date property "parse" has { DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A2_T1.js b/test/built-ins/Date/parse/S15.9.4.2_A2_T1.js index 83b526abcd..74cb85848c 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A2_T1.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "parse" is 1 esid: sec-date.parse -es5id: 15.9.4.2_A2_T1 description: The "length" property of the "parse" is 1 ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A3_T1.js b/test/built-ins/Date/parse/S15.9.4.2_A3_T1.js index 44dcbafcc3..e2e0e36ba9 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A3_T1.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.parse property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A3_T2.js b/test/built-ins/Date/parse/S15.9.4.2_A3_T2.js index 50c4f3128e..7f70b2379e 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A3_T2.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.parse property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/parse/S15.9.4.2_A3_T3.js b/test/built-ins/Date/parse/S15.9.4.2_A3_T3.js index 5e2de082f6..64b46f4d40 100644 --- a/test/built-ins/Date/parse/S15.9.4.2_A3_T3.js +++ b/test/built-ins/Date/parse/S15.9.4.2_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.parse property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.parse -es5id: 15.9.4.2_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/parse/name.js b/test/built-ins/Date/parse/name.js index 183959fb35..a99a75d203 100644 --- a/test/built-ins/Date/parse/name.js +++ b/test/built-ins/Date/parse/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.parse -es6id: 20.3.3.2 description: > Date.parse.name is "parse". info: | diff --git a/test/built-ins/Date/parse/time-value-maximum-range.js b/test/built-ins/Date/parse/time-value-maximum-range.js index c4259dcd61..725239a102 100644 --- a/test/built-ins/Date/parse/time-value-maximum-range.js +++ b/test/built-ins/Date/parse/time-value-maximum-range.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.parse -es6id: 20.3.3.2 description: > Date.parse return value is limited to specified time value maximum range info: | diff --git a/test/built-ins/Date/parse/zero.js b/test/built-ins/Date/parse/zero.js index 4788b94b07..a898d47b69 100644 --- a/test/built-ins/Date/parse/zero.js +++ b/test/built-ins/Date/parse/zero.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.parse -es6id: 20.3.3.2 description: > Date.parse of toString/toUTCString/toISOString of zero value is zero info: | diff --git a/test/built-ins/Date/proto-from-ctor-realm-one.js b/test/built-ins/Date/proto-from-ctor-realm-one.js index d741da68eb..9c2a8aac2b 100644 --- a/test/built-ins/Date/proto-from-ctor-realm-one.js +++ b/test/built-ins/Date/proto-from-ctor-realm-one.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Date/proto-from-ctor-realm-two.js b/test/built-ins/Date/proto-from-ctor-realm-two.js index 472fbe8058..a4272f6bb6 100644 --- a/test/built-ins/Date/proto-from-ctor-realm-two.js +++ b/test/built-ins/Date/proto-from-ctor-realm-two.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-year-month-date-hours-minutes-seconds-ms -es6id: 20.3.2.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Date/proto-from-ctor-realm-zero.js b/test/built-ins/Date/proto-from-ctor-realm-zero.js index c56e3ae0b3..00cb0ddd1e 100644 --- a/test/built-ins/Date/proto-from-ctor-realm-zero.js +++ b/test/built-ins/Date/proto-from-ctor-realm-zero.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-constructor-date -es6id: 20.3.2.3 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Date/prototype/S15.9.4.1_A1_T1.js b/test/built-ins/Date/prototype/S15.9.4.1_A1_T1.js index e18fc8c2df..2ebf8b9f0f 100644 --- a/test/built-ins/Date/prototype/S15.9.4.1_A1_T1.js +++ b/test/built-ins/Date/prototype/S15.9.4.1_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date property "prototype" has { DontEnum, DontDelete, ReadOnly } attributes esid: sec-date.prototype -es5id: 15.9.4.1_A1_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.4.1_A1_T2.js b/test/built-ins/Date/prototype/S15.9.4.1_A1_T2.js index 381b6db8d6..6a50d77ca0 100644 --- a/test/built-ins/Date/prototype/S15.9.4.1_A1_T2.js +++ b/test/built-ins/Date/prototype/S15.9.4.1_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date property "prototype" has { DontEnum, DontDelete, ReadOnly } attributes esid: sec-date.prototype -es5id: 15.9.4.1_A1_T2 description: Checking DontDelete attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.4.1_A1_T3.js b/test/built-ins/Date/prototype/S15.9.4.1_A1_T3.js index 584534f08d..b7394a74fe 100644 --- a/test/built-ins/Date/prototype/S15.9.4.1_A1_T3.js +++ b/test/built-ins/Date/prototype/S15.9.4.1_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date property "prototype" has { DontEnum, DontDelete, ReadOnly } attributes esid: sec-date.prototype -es5id: 15.9.4.1_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A01_T1.js b/test/built-ins/Date/prototype/S15.9.5_A01_T1.js index 4e8aa39a4b..a61c695c39 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A01_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A01_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "constructor" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A01_T1 description: The Date.prototype has the property "constructor" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A02_T1.js b/test/built-ins/Date/prototype/S15.9.5_A02_T1.js index 2eed4f1eb3..16214cd123 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A02_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A02_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A02_T1 description: The Date.prototype has the property "toString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A03_T1.js b/test/built-ins/Date/prototype/S15.9.5_A03_T1.js index 0ee361179e..77bb9e0a5e 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A03_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A03_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toDateString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A03_T1 description: The Date.prototype has the property "toDateString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A04_T1.js b/test/built-ins/Date/prototype/S15.9.5_A04_T1.js index c069dc245b..657836386f 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A04_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A04_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toTimeString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A04_T1 description: The Date.prototype has the property "toTimeString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A05_T1.js b/test/built-ins/Date/prototype/S15.9.5_A05_T1.js index 93d0473d5f..27dc14370f 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A05_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A05_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toLocaleString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A05_T1 description: The Date.prototype has the property "toLocaleString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A06_T1.js b/test/built-ins/Date/prototype/S15.9.5_A06_T1.js index 03d792523b..3dd8b2e68a 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A06_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A06_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toLocaleDateString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A06_T1 description: The Date.prototype has the property "toLocaleDateString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A07_T1.js b/test/built-ins/Date/prototype/S15.9.5_A07_T1.js index d4e616a3b0..5db6c40397 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A07_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A07_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toLocaleTimeString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A07_T1 description: The Date.prototype has the property "toLocaleTimeString" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A08_T1.js b/test/built-ins/Date/prototype/S15.9.5_A08_T1.js index 956c540300..8b90a9fd18 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A08_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A08_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "valueOf" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A08_T1 description: The Date.prototype has the property "valueOf" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A09_T1.js b/test/built-ins/Date/prototype/S15.9.5_A09_T1.js index 1702b4f796..822c9ce4b6 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A09_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A09_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getTime" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A09_T1 description: The Date.prototype has the property "getTime" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A10_T1.js b/test/built-ins/Date/prototype/S15.9.5_A10_T1.js index a97e2830e6..2453c84d08 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A10_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A10_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getFullYear" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A10_T1 description: The Date.prototype has the property "getFullYear" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A11_T1.js b/test/built-ins/Date/prototype/S15.9.5_A11_T1.js index a808725adf..089c3afd05 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A11_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A11_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCFullYear" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A11_T1 description: The Date.prototype has the property "getUTCFullYear" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A12_T1.js b/test/built-ins/Date/prototype/S15.9.5_A12_T1.js index 8d697d6659..32eb4d087a 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A12_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A12_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getMonth" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A12_T1 description: The Date.prototype has the property "getMonth" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A13_T1.js b/test/built-ins/Date/prototype/S15.9.5_A13_T1.js index 4e8e7e1c6d..95a9789cac 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A13_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A13_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCMonth" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A13_T1 description: The Date.prototype has the property "getUTCMonth" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A14_T1.js b/test/built-ins/Date/prototype/S15.9.5_A14_T1.js index 901af6df6b..0ca0cf4915 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A14_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A14_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getDate" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A14_T1 description: The Date.prototype has the property "getDate" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A15_T1.js b/test/built-ins/Date/prototype/S15.9.5_A15_T1.js index 1ea076f8b7..8948107518 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A15_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A15_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCDate" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A15_T1 description: The Date.prototype has the property "getUTCDate" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A16_T1.js b/test/built-ins/Date/prototype/S15.9.5_A16_T1.js index e6e74d724c..ad9091b0e3 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A16_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A16_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getDay" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A16_T1 description: The Date.prototype has the property "getDay" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A17_T1.js b/test/built-ins/Date/prototype/S15.9.5_A17_T1.js index a1bfd2a829..ba2fda2374 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A17_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A17_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCDay" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A17_T1 description: The Date.prototype has the property "getUTCDay" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A18_T1.js b/test/built-ins/Date/prototype/S15.9.5_A18_T1.js index b0c5d99148..9751d2832f 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A18_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A18_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getHours" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A18_T1 description: The Date.prototype has the property "getHours" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A19_T1.js b/test/built-ins/Date/prototype/S15.9.5_A19_T1.js index 121995f933..e3188d00c3 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A19_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A19_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCHours" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A19_T1 description: The Date.prototype has the property "getUTCHours" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A20_T1.js b/test/built-ins/Date/prototype/S15.9.5_A20_T1.js index 91af4cab85..31ee18ed28 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A20_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A20_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getMinutes" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A20_T1 description: The Date.prototype has the property "getMinutes" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A21_T1.js b/test/built-ins/Date/prototype/S15.9.5_A21_T1.js index f6b144d329..3bbb17e1a4 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A21_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A21_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCMinutes" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A21_T1 description: The Date.prototype has the property "getUTCMinutes" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A22_T1.js b/test/built-ins/Date/prototype/S15.9.5_A22_T1.js index 7e06d80203..5937e6262d 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A22_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A22_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getSeconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A22_T1 description: The Date.prototype has the property "getSeconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A23_T1.js b/test/built-ins/Date/prototype/S15.9.5_A23_T1.js index 8dab8344e2..39c7452778 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A23_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A23_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCSeconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A23_T1 description: The Date.prototype has the property "getUTCSeconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A24_T1.js b/test/built-ins/Date/prototype/S15.9.5_A24_T1.js index 62bf0c5fe8..723af010d6 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A24_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A24_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getMilliseconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A24_T1 description: The Date.prototype has the property "getMilliseconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A25_T1.js b/test/built-ins/Date/prototype/S15.9.5_A25_T1.js index a3fa23e11e..e68b18a3dc 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A25_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A25_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getUTCMilliseconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A25_T1 description: The Date.prototype has the property "getUTCMilliseconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A26_T1.js b/test/built-ins/Date/prototype/S15.9.5_A26_T1.js index dce48a446e..77b7cd1206 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A26_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A26_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "getTimezoneOffset" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A26_T1 description: The Date.prototype has the property "getTimezoneOffset" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A27_T1.js b/test/built-ins/Date/prototype/S15.9.5_A27_T1.js index 5cfb076ede..f69e1e1b75 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A27_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A27_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setTime" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A27_T1 description: The Date.prototype has the property "setTime" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A28_T1.js b/test/built-ins/Date/prototype/S15.9.5_A28_T1.js index 9477085b7a..ceb21bce44 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A28_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A28_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setMilliseconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A28_T1 description: The Date.prototype has the property "setMilliseconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A29_T1.js b/test/built-ins/Date/prototype/S15.9.5_A29_T1.js index c9fe329cb4..31bec01a85 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A29_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A29_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCMilliseconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A29_T1 description: The Date.prototype has the property "setUTCMilliseconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A30_T1.js b/test/built-ins/Date/prototype/S15.9.5_A30_T1.js index e65718a734..3953abfe69 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A30_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A30_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setSeconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A30_T1 description: The Date.prototype has the property "setSeconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A31_T1.js b/test/built-ins/Date/prototype/S15.9.5_A31_T1.js index 64f801900c..dadc0b22e8 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A31_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A31_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCSeconds" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A31_T1 description: The Date.prototype has the property "setUTCSeconds" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A32_T1.js b/test/built-ins/Date/prototype/S15.9.5_A32_T1.js index 19e349e8b1..601a4db345 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A32_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A32_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setMinutes" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A32_T1 description: The Date.prototype has the property "setMinutes" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A33_T1.js b/test/built-ins/Date/prototype/S15.9.5_A33_T1.js index 85f07b5f2f..14e18a9a5c 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A33_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A33_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCMinutes" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A33_T1 description: The Date.prototype has the property "setUTCMinutes" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A34_T1.js b/test/built-ins/Date/prototype/S15.9.5_A34_T1.js index 4810950ba9..4d6c768c21 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A34_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A34_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setHours" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A34_T1 description: The Date.prototype has the property "setHours" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A35_T1.js b/test/built-ins/Date/prototype/S15.9.5_A35_T1.js index c2a98b4144..fa904d246f 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A35_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A35_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCHours" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A35_T1 description: The Date.prototype has the property "setUTCHours" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A36_T1.js b/test/built-ins/Date/prototype/S15.9.5_A36_T1.js index 4fa278360c..e288064d03 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A36_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A36_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setDate" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A36_T1 description: The Date.prototype has the property "setDate" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A37_T1.js b/test/built-ins/Date/prototype/S15.9.5_A37_T1.js index 1c88f55bd9..4dfd7a1306 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A37_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A37_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCDate" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A37_T1 description: The Date.prototype has the property "setUTCDate" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A38_T1.js b/test/built-ins/Date/prototype/S15.9.5_A38_T1.js index 1b4ce8b06a..75fcd57cb6 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A38_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A38_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setMonth" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A38_T1 description: The Date.prototype has the property "setMonth" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A39_T1.js b/test/built-ins/Date/prototype/S15.9.5_A39_T1.js index 0798b71487..cde3d3ae1f 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A39_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A39_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCMonth" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A39_T1 description: The Date.prototype has the property "setUTCMonth" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A40_T1.js b/test/built-ins/Date/prototype/S15.9.5_A40_T1.js index b32f6858f7..b312435185 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A40_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A40_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setFullYear" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A40_T1 description: The Date.prototype has the property "setFullYear" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A41_T1.js b/test/built-ins/Date/prototype/S15.9.5_A41_T1.js index 879e1bfc91..7b09821511 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A41_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A41_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "setUTCFullYear" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A41_T1 description: The Date.prototype has the property "setUTCFullYear" ---*/ diff --git a/test/built-ins/Date/prototype/S15.9.5_A42_T1.js b/test/built-ins/Date/prototype/S15.9.5_A42_T1.js index 61dc0ef4cb..2a3975abde 100644 --- a/test/built-ins/Date/prototype/S15.9.5_A42_T1.js +++ b/test/built-ins/Date/prototype/S15.9.5_A42_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype has the property "toUTCString" esid: sec-properties-of-the-date-prototype-object -es5id: 15.9.5_A42_T1 description: The Date.prototype has the property "toUTCString" ---*/ diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-invalid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-invalid.js index 9819a3da38..e50a77eb81 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-invalid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-invalid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "default" and first try returns an invalid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-non-callable.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-non-callable.js index f9bde1b3e2..18f6e5051d 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-non-callable.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-non-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "default" and first try is not callable info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-valid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-valid.js index 66584ad827..6dfbbd3ce6 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-valid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-first-valid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "default" and first try returns a valid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-no-callables.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-no-callables.js index 2a063f6122..91fd977a37 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-no-callables.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-default-no-callables.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "default" and neither first nor second try are callable. info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-invalid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-invalid.js index 207f28c6ad..09f2837474 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-invalid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-invalid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: Behavior when an invalid `hint` argument is specified info: | 1. Let O be the this value. diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-invalid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-invalid.js index e87068416c..70bae6662b 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-invalid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-invalid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "number" and first try returns an invalid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-non-callable.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-non-callable.js index 6cb9d518ff..9ea1c299f0 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-non-callable.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-non-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "number" and first try is not callable info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-valid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-valid.js index 6d2d593e08..e7deb7cf56 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-valid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-first-valid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "number" and first try returns a valid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-no-callables.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-no-callables.js index 0e48b769be..f222c96e16 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-no-callables.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-number-no-callables.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "number" and neither first nor second try are callable. info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-invalid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-invalid.js index 7759403887..422deded0b 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-invalid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-invalid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "string" and first try returns an invalid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-non-callable.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-non-callable.js index 1c37df2846..cfed20c5f0 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-non-callable.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-non-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "string" and first try is not callable info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-valid.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-valid.js index 9cbb0d7266..dab128e2e2 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-valid.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-first-valid.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "string" and first try returns a valid value info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-no-callables.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-no-callables.js index 22429c0b2e..5ac51fe08b 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-no-callables.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/hint-string-no-callables.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: > Behavior when `hint` is "string" and neither first nor second try are callable. info: | diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/length.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/length.js index 153ee1bd7b..3e8c04f918 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/length.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: Date.prototype[Symbol.toPrimitive] `length` property info: | ES6 section 17: diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/name.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/name.js index 65006c94a2..e34567470f 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/name.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: Date.prototype[Symbol.toPrimitive] `name` property info: | The value of the name property of this function is "[Symbol.toPrimitive]". diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/prop-desc.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/prop-desc.js index 77cd954a0d..b1da1daf46 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/prop-desc.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/prop-desc.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: Date.prototype[Symbol.toPrimitive] property descriptor info: | This property has the attributes { [[Writable]]: false, [[Enumerable]]: diff --git a/test/built-ins/Date/prototype/Symbol.toPrimitive/this-val-non-obj.js b/test/built-ins/Date/prototype/Symbol.toPrimitive/this-val-non-obj.js index 7ab5ac97d8..f50b9c56a4 100644 --- a/test/built-ins/Date/prototype/Symbol.toPrimitive/this-val-non-obj.js +++ b/test/built-ins/Date/prototype/Symbol.toPrimitive/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype-@@toprimitive -es6id: 20.3.4.45 description: Behavior when `this` value is not an Object info: | 1. Let O be the this value. diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T1.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T1.js index 7b31914c45..87d8ee9356 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T1.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "constructor" has { DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T2.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T2.js index fb7f638138..2d10e9eabd 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T2.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "constructor" has { DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T3.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T3.js index 585613408a..fb54354e39 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T3.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "constructor" has { DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js index 49cd15ab26..b544f6fbc7 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "constructor" is 7 esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A2_T1 description: The "length" property of the "constructor" is 7 ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T1.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T1.js index a633df0dcd..d50a45e2d9 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T1.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.constructor property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T2.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T2.js index b5beb2284d..d423f46ef8 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T2.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.constructor property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T3.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T3.js index d920a2e816..8313ba809b 100644 --- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T3.js +++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.constructor property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.constructor -es5id: 15.9.5.1_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T1.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T1.js index 3a75f29c6e..900a889166 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T1.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getDate" has { DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T2.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T2.js index 61047cc755..14d41b0198 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T2.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getDate" has { DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js index 76ad845df2..d0929e8e0b 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getDate" has { DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A2_T1.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A2_T1.js index 4756c8aa0d..24627dc3ee 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A2_T1.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getDate" is 0 esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A2_T1 description: The "length" property of the "getDate" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T1.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T1.js index f91cc11537..33fa9760ea 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T1.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T2.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T2.js index 464dd1a2f5..2a62ba4957 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T2.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getDate property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T3.js b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T3.js index 1838bde8e8..03c30cba40 100644 --- a/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T3.js +++ b/test/built-ins/Date/prototype/getDate/S15.9.5.14_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getdate -es5id: 15.9.5.14_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getDate/name.js b/test/built-ins/Date/prototype/getDate/name.js index be29fe410b..c2e6cc963c 100644 --- a/test/built-ins/Date/prototype/getDate/name.js +++ b/test/built-ins/Date/prototype/getDate/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getdate -es6id: 20.3.4.2 description: > Date.prototype.getDate.name is "getDate". info: | diff --git a/test/built-ins/Date/prototype/getDate/this-value-invalid-date.js b/test/built-ins/Date/prototype/getDate/this-value-invalid-date.js index 801d6a5e81..a809645549 100644 --- a/test/built-ins/Date/prototype/getDate/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getDate/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getdate -es6id: 20.3.4.2 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getDate/this-value-non-date.js b/test/built-ins/Date/prototype/getDate/this-value-non-date.js index 31eb39ad36..280dbadbc3 100644 --- a/test/built-ins/Date/prototype/getDate/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getDate/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getdate -es6id: 20.3.4.2 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getDate/this-value-non-object.js b/test/built-ins/Date/prototype/getDate/this-value-non-object.js index 7764ab83ee..83f971ff32 100644 --- a/test/built-ins/Date/prototype/getDate/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getDate/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getdate -es6id: 20.3.4.2 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getDate/this-value-valid-date.js b/test/built-ins/Date/prototype/getDate/this-value-valid-date.js index ef065e1876..9b32b3035c 100644 --- a/test/built-ins/Date/prototype/getDate/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getDate/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getdate -es6id: 20.3.4.2 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getDay/name.js b/test/built-ins/Date/prototype/getDay/name.js index 77930fdd25..6dbaa33c5d 100644 --- a/test/built-ins/Date/prototype/getDay/name.js +++ b/test/built-ins/Date/prototype/getDay/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getday -es6id: 20.3.4.3 description: > Date.prototype.getDay.name is "getDay". info: | diff --git a/test/built-ins/Date/prototype/getDay/this-value-invalid-date.js b/test/built-ins/Date/prototype/getDay/this-value-invalid-date.js index cdcd54c091..c1f385901a 100644 --- a/test/built-ins/Date/prototype/getDay/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getDay/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getday -es6id: 20.3.4.3 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getDay/this-value-non-date.js b/test/built-ins/Date/prototype/getDay/this-value-non-date.js index f03661dd90..88de045bbe 100644 --- a/test/built-ins/Date/prototype/getDay/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getDay/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getday -es6id: 20.3.4.3 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getDay/this-value-non-object.js b/test/built-ins/Date/prototype/getDay/this-value-non-object.js index 49bbab1d78..d0c2c64ff5 100644 --- a/test/built-ins/Date/prototype/getDay/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getDay/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getday -es6id: 20.3.4.3 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getDay/this-value-valid-date.js b/test/built-ins/Date/prototype/getDay/this-value-valid-date.js index a9f98f9d93..18289019fd 100644 --- a/test/built-ins/Date/prototype/getDay/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getDay/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getday -es6id: 20.3.4.3 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getFullYear/name.js b/test/built-ins/Date/prototype/getFullYear/name.js index 66cf4890fd..25c0818305 100644 --- a/test/built-ins/Date/prototype/getFullYear/name.js +++ b/test/built-ins/Date/prototype/getFullYear/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getfullyear -es6id: 20.3.4.4 description: > Date.prototype.getFullYear.name is "getFullYear". info: | diff --git a/test/built-ins/Date/prototype/getFullYear/this-value-invalid-date.js b/test/built-ins/Date/prototype/getFullYear/this-value-invalid-date.js index ed516b30bd..25cf9ca6d3 100644 --- a/test/built-ins/Date/prototype/getFullYear/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getFullYear/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getfullyear -es6id: 20.3.4.4 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getFullYear/this-value-non-date.js b/test/built-ins/Date/prototype/getFullYear/this-value-non-date.js index f191bd5a6c..09ba5a9813 100644 --- a/test/built-ins/Date/prototype/getFullYear/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getFullYear/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getfullyear -es6id: 20.3.4.4 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getFullYear/this-value-non-object.js b/test/built-ins/Date/prototype/getFullYear/this-value-non-object.js index 2db8d32958..7495a54725 100644 --- a/test/built-ins/Date/prototype/getFullYear/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getFullYear/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getfullyear -es6id: 20.3.4.4 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getFullYear/this-value-valid-date.js b/test/built-ins/Date/prototype/getFullYear/this-value-valid-date.js index 5020239ce5..7f8da2413e 100644 --- a/test/built-ins/Date/prototype/getFullYear/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getFullYear/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getfullyear -es6id: 20.3.4.4 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getHours/name.js b/test/built-ins/Date/prototype/getHours/name.js index ea5f0871f7..a874d0d875 100644 --- a/test/built-ins/Date/prototype/getHours/name.js +++ b/test/built-ins/Date/prototype/getHours/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.gethours -es6id: 20.3.4.5 description: > Date.prototype.getHours.name is "getHours". info: | diff --git a/test/built-ins/Date/prototype/getHours/this-value-invalid-date.js b/test/built-ins/Date/prototype/getHours/this-value-invalid-date.js index 7d55381c44..a5cbef2601 100644 --- a/test/built-ins/Date/prototype/getHours/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getHours/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gethours -es6id: 20.3.4.5 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getHours/this-value-non-date.js b/test/built-ins/Date/prototype/getHours/this-value-non-date.js index 075c0dd9ad..528c5d051c 100644 --- a/test/built-ins/Date/prototype/getHours/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getHours/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gethours -es6id: 20.3.4.5 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getHours/this-value-non-object.js b/test/built-ins/Date/prototype/getHours/this-value-non-object.js index ad9536b85f..f3b14ddda2 100644 --- a/test/built-ins/Date/prototype/getHours/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getHours/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gethours -es6id: 20.3.4.5 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getHours/this-value-valid-date.js b/test/built-ins/Date/prototype/getHours/this-value-valid-date.js index 7cc0e4a2bf..db9a0296f0 100644 --- a/test/built-ins/Date/prototype/getHours/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getHours/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gethours -es6id: 20.3.4.5 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMilliseconds/name.js b/test/built-ins/Date/prototype/getMilliseconds/name.js index cdc81c3209..9e79072fed 100644 --- a/test/built-ins/Date/prototype/getMilliseconds/name.js +++ b/test/built-ins/Date/prototype/getMilliseconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getmilliseconds -es6id: 20.3.4.6 description: > Date.prototype.getMilliseconds.name is "getMilliseconds". info: | diff --git a/test/built-ins/Date/prototype/getMilliseconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/getMilliseconds/this-value-invalid-date.js index 50bbdb0452..3cad64399b 100644 --- a/test/built-ins/Date/prototype/getMilliseconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getMilliseconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmilliseconds -es6id: 20.3.4.6 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMilliseconds/this-value-non-date.js b/test/built-ins/Date/prototype/getMilliseconds/this-value-non-date.js index 284cbcbfed..ab5cc6c834 100644 --- a/test/built-ins/Date/prototype/getMilliseconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getMilliseconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmilliseconds -es6id: 20.3.4.6 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getMilliseconds/this-value-non-object.js b/test/built-ins/Date/prototype/getMilliseconds/this-value-non-object.js index b215b9c51b..aa198b3f60 100644 --- a/test/built-ins/Date/prototype/getMilliseconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getMilliseconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmilliseconds -es6id: 20.3.4.6 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMilliseconds/this-value-valid-date.js b/test/built-ins/Date/prototype/getMilliseconds/this-value-valid-date.js index 0cbcb5643e..f2a7613841 100644 --- a/test/built-ins/Date/prototype/getMilliseconds/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getMilliseconds/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmilliseconds -es6id: 20.3.4.6 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMinutes/name.js b/test/built-ins/Date/prototype/getMinutes/name.js index a14260f762..6896f9fbf7 100644 --- a/test/built-ins/Date/prototype/getMinutes/name.js +++ b/test/built-ins/Date/prototype/getMinutes/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getminutes -es6id: 20.3.4.7 description: > Date.prototype.getMinutes.name is "getMinutes". info: | diff --git a/test/built-ins/Date/prototype/getMinutes/this-value-invalid-date.js b/test/built-ins/Date/prototype/getMinutes/this-value-invalid-date.js index 6cf7076852..84721008c5 100644 --- a/test/built-ins/Date/prototype/getMinutes/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getMinutes/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getminutes -es6id: 20.3.4.7 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMinutes/this-value-non-date.js b/test/built-ins/Date/prototype/getMinutes/this-value-non-date.js index 1eca182ac0..ef73446c9c 100644 --- a/test/built-ins/Date/prototype/getMinutes/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getMinutes/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getminutes -es6id: 20.3.4.7 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getMinutes/this-value-non-object.js b/test/built-ins/Date/prototype/getMinutes/this-value-non-object.js index 00427806bb..2310ff1362 100644 --- a/test/built-ins/Date/prototype/getMinutes/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getMinutes/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getminutes -es6id: 20.3.4.7 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMinutes/this-value-valid-date.js b/test/built-ins/Date/prototype/getMinutes/this-value-valid-date.js index 39c22add80..579a54cd2f 100644 --- a/test/built-ins/Date/prototype/getMinutes/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getMinutes/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getminutes -es6id: 20.3.4.7 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T1.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T1.js index a21e5c917d..f7fae41379 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T1.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getMonth" has { DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T2.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T2.js index 1ebae46de9..2a402910a4 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T2.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getMonth" has { DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T3.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T3.js index ad2707c4c4..7dca161971 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T3.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getMonth" has { DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A2_T1.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A2_T1.js index 369327b27f..3d76cc21f2 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A2_T1.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getMonth" is 0 esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A2_T1 description: The "length" property of the "getMonth" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T1.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T1.js index 631cbcc03b..c749c0f148 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T1.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T2.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T2.js index f138e4541d..01e402c349 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T2.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getMonth property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T3.js b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T3.js index ef10bf2164..c9a619c465 100644 --- a/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T3.js +++ b/test/built-ins/Date/prototype/getMonth/S15.9.5.12_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getmonth -es5id: 15.9.5.12_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getMonth/name.js b/test/built-ins/Date/prototype/getMonth/name.js index 31a7ad69c1..27f2e5083c 100644 --- a/test/built-ins/Date/prototype/getMonth/name.js +++ b/test/built-ins/Date/prototype/getMonth/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getmonth -es6id: 20.3.4.8 description: > Date.prototype.getMonth.name is "getMonth". info: | diff --git a/test/built-ins/Date/prototype/getMonth/this-value-invalid-date.js b/test/built-ins/Date/prototype/getMonth/this-value-invalid-date.js index 17200abbcf..062635f770 100644 --- a/test/built-ins/Date/prototype/getMonth/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getMonth/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmonth -es6id: 20.3.4.8 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMonth/this-value-non-date.js b/test/built-ins/Date/prototype/getMonth/this-value-non-date.js index 0dbd2ef096..f6941db736 100644 --- a/test/built-ins/Date/prototype/getMonth/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getMonth/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmonth -es6id: 20.3.4.8 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getMonth/this-value-non-object.js b/test/built-ins/Date/prototype/getMonth/this-value-non-object.js index 742b5416b9..10d030bf42 100644 --- a/test/built-ins/Date/prototype/getMonth/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getMonth/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmonth -es6id: 20.3.4.8 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getMonth/this-value-valid-date.js b/test/built-ins/Date/prototype/getMonth/this-value-valid-date.js index 633a3d79ca..380e46df76 100644 --- a/test/built-ins/Date/prototype/getMonth/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getMonth/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getmonth -es6id: 20.3.4.8 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T1.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T1.js index c3ecf96709..ff508927ca 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T1.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getSeconds" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T2.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T2.js index 0f5b25ac6b..ce58ae8e8a 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T2.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getSeconds" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T3.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T3.js index c8ef094ed0..652b6fb5cc 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T3.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getSeconds" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A2_T1.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A2_T1.js index 4670ca41c6..0857238f68 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A2_T1.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getSeconds" is 0 esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A2_T1 description: The "length" property of the "getSeconds" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T1.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T1.js index 36fbed5bd7..ae7c11e6e0 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T1.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T2.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T2.js index 6bf3900c9b..16c655022e 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T2.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getSeconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T3.js b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T3.js index 5f3a77b801..1fe88fefb0 100644 --- a/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T3.js +++ b/test/built-ins/Date/prototype/getSeconds/S15.9.5.22_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.22_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getSeconds/name.js b/test/built-ins/Date/prototype/getSeconds/name.js index f8d2d3dd1c..a188372184 100644 --- a/test/built-ins/Date/prototype/getSeconds/name.js +++ b/test/built-ins/Date/prototype/getSeconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.9 description: > Date.prototype.getSeconds.name is "getSeconds". info: | diff --git a/test/built-ins/Date/prototype/getSeconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/getSeconds/this-value-invalid-date.js index 08dc11e732..abd707197e 100644 --- a/test/built-ins/Date/prototype/getSeconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getSeconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.9 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getSeconds/this-value-non-date.js b/test/built-ins/Date/prototype/getSeconds/this-value-non-date.js index 01b061bb67..2adb9fd2e9 100644 --- a/test/built-ins/Date/prototype/getSeconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getSeconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.9 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getSeconds/this-value-non-object.js b/test/built-ins/Date/prototype/getSeconds/this-value-non-object.js index 7470708bf9..da24595204 100644 --- a/test/built-ins/Date/prototype/getSeconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getSeconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.9 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getSeconds/this-value-valid-date.js b/test/built-ins/Date/prototype/getSeconds/this-value-valid-date.js index d2abfc4654..262ef9524c 100644 --- a/test/built-ins/Date/prototype/getSeconds/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getSeconds/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.9 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T1.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T1.js index d64c25bda6..366469db73 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T1.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getTime" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T2.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T2.js index c492eeb3e0..85e65ab67c 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T2.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getTime" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T3.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T3.js index 03899aedbd..67bc11f1c7 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T3.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getTime" has { DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A2_T1.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A2_T1.js index bfb10ee717..d09cbfca90 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A2_T1.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getTime" is 0 esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A2_T1 description: The "length" property of the "getTime" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T1.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T1.js index 7e6684716b..9ed560e135 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T1.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTime property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T2.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T2.js index ed9a191ef7..4d2162fec8 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T2.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTime property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T3.js b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T3.js index 9c70eb7d3f..6e0fca04e7 100644 --- a/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T3.js +++ b/test/built-ins/Date/prototype/getTime/S15.9.5.9_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTime property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getseconds -es5id: 15.9.5.9_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTime/name.js b/test/built-ins/Date/prototype/getTime/name.js index f472889168..989901d103 100644 --- a/test/built-ins/Date/prototype/getTime/name.js +++ b/test/built-ins/Date/prototype/getTime/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getseconds -es6id: 20.3.4.10 description: > Date.prototype.getTime.name is "getTime". info: | diff --git a/test/built-ins/Date/prototype/getTime/this-value-invalid-date.js b/test/built-ins/Date/prototype/getTime/this-value-invalid-date.js index d123be9b5e..f9c59b96ae 100644 --- a/test/built-ins/Date/prototype/getTime/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getTime/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettime -es6id: 20.3.4.10 description: Return value for invalid date info: | 1. Return ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTime/this-value-non-date.js b/test/built-ins/Date/prototype/getTime/this-value-non-date.js index 5e97078b72..46b0be5dcf 100644 --- a/test/built-ins/Date/prototype/getTime/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getTime/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettime -es6id: 20.3.4.10 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getTime/this-value-non-object.js b/test/built-ins/Date/prototype/getTime/this-value-non-object.js index c2808853a3..bb98fbfd6f 100644 --- a/test/built-ins/Date/prototype/getTime/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getTime/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettime -es6id: 20.3.4.10 description: Behavior when "this" value is not an Object info: | 1. Return ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTime/this-value-valid-date.js b/test/built-ins/Date/prototype/getTime/this-value-valid-date.js index 0b3ebf336c..e2b9bab137 100644 --- a/test/built-ins/Date/prototype/getTime/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getTime/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettime -es6id: 20.3.4.10 description: Return value for valid dates info: | 1. Return ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T1.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T1.js index f3a664fcb3..58b83a40aa 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T1.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getTimezoneOffset" has { DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T2.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T2.js index 553711f41a..8c97a16ab5 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T2.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getTimezoneOffset" has { DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T3.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T3.js index 6665c7a287..2dc4ab1623 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T3.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getTimezoneOffset" has { DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A2_T1.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A2_T1.js index 606a8b167c..76bf9ed8c9 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A2_T1.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getTimezoneOffset" is 0 esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A2_T1 description: The "length" property of the "getTimezoneOffset" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T1.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T1.js index 910045d558..75574b234a 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T1.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTimezoneOffset property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T2.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T2.js index 2d122a8789..fff7deb8cb 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T2.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTimezoneOffset property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T3.js b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T3.js index 07d60f18af..0bf783bd82 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T3.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/S15.9.5.26_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getTimezoneOffset property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.gettimezoneoffset -es5id: 15.9.5.26_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/name.js b/test/built-ins/Date/prototype/getTimezoneOffset/name.js index 39445bad54..99e7843be8 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/name.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.gettimezoneoffset -es6id: 20.3.4.11 description: > Date.prototype.getTimezoneOffset.name is "getTimezoneOffset". info: | diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-invalid-date.js b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-invalid-date.js index 2e675061cd..e02646920f 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettimezoneoffset -es6id: 20.3.4.11 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-date.js b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-date.js index a2babe656b..ea59bdf861 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettimezoneoffset -es6id: 20.3.4.11 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-object.js b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-object.js index add5279f65..7e917cd615 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettimezoneoffset -es6id: 20.3.4.11 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-valid-date.js b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-valid-date.js index e99f3a2e79..49ab70bb66 100644 --- a/test/built-ins/Date/prototype/getTimezoneOffset/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getTimezoneOffset/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.gettimezoneoffset -es6id: 20.3.4.11 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T1.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T1.js index a0dbe95e8d..66f00ae831 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDate" has { DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T2.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T2.js index 90ab47a5d4..b898823387 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDate" has { DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T3.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T3.js index e91f04ae88..1cc7f5d1f2 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDate" has { DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A2_T1.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A2_T1.js index d9a4b4075c..d6add16702 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCDate" is 0 esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A2_T1 description: The "length" property of the "getUTCDate" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T1.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T1.js index cdcd8215a2..0c68e88066 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T2.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T2.js index de279e6ea4..2abb57ffeb 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDate property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T3.js b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T3.js index 5f7607bda7..220be62c95 100644 --- a/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCDate/S15.9.5.15_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdate -es5id: 15.9.5.15_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDate/name.js b/test/built-ins/Date/prototype/getUTCDate/name.js index 8e2e5ff1c6..804bda510e 100644 --- a/test/built-ins/Date/prototype/getUTCDate/name.js +++ b/test/built-ins/Date/prototype/getUTCDate/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcdate -es6id: 20.3.4.12 description: > Date.prototype.getUTCDate.name is "getUTCDate". info: | diff --git a/test/built-ins/Date/prototype/getUTCDate/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCDate/this-value-invalid-date.js index f6c960f56a..797e721990 100644 --- a/test/built-ins/Date/prototype/getUTCDate/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCDate/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcdate -es6id: 20.3.4.12 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDate/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCDate/this-value-non-date.js index 19c4ffdb2c..6526772d66 100644 --- a/test/built-ins/Date/prototype/getUTCDate/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCDate/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcdate -es6id: 20.3.4.12 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCDate/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCDate/this-value-non-object.js index 4065f37238..ad6b48a361 100644 --- a/test/built-ins/Date/prototype/getUTCDate/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCDate/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcdate -es6id: 20.3.4.12 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDate/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCDate/this-value-valid-date.js index ad5e307c94..019867ddb2 100644 --- a/test/built-ins/Date/prototype/getUTCDate/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCDate/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcdate -es6id: 20.3.4.12 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T1.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T1.js index b461a8e7b7..644a87982d 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDay" has { DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T2.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T2.js index 05074a1e11..128a72d6c2 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDay" has { DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T3.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T3.js index 3c7bc11a95..c2421bfdee 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCDay" has { DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A2_T1.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A2_T1.js index 616287d5b5..82da81a7a8 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCDay" is 0 esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A2_T1 description: The "length" property of the "getUTCDay" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T1.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T1.js index e6162b5c3f..2b8f4bbbf8 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDay property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T2.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T2.js index e16a345ee9..ddac684e5e 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDay property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T3.js b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T3.js index edbb9776c4..7587d902af 100644 --- a/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCDay/S15.9.5.17_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCDay property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcdaty -es5id: 15.9.5.17_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCDay/name.js b/test/built-ins/Date/prototype/getUTCDay/name.js index 1e3e60f347..e2eb61d5b2 100644 --- a/test/built-ins/Date/prototype/getUTCDay/name.js +++ b/test/built-ins/Date/prototype/getUTCDay/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcdaty -es6id: 20.3.4.13 description: > Date.prototype.getUTCDay.name is "getUTCDay". info: | diff --git a/test/built-ins/Date/prototype/getUTCDay/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCDay/this-value-invalid-date.js index ff99a3e5fe..db5e75127d 100644 --- a/test/built-ins/Date/prototype/getUTCDay/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCDay/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcday -es6id: 20.3.4.13 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDay/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCDay/this-value-non-date.js index 156fe2099b..1b04f4ef5e 100644 --- a/test/built-ins/Date/prototype/getUTCDay/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCDay/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcday -es6id: 20.3.4.13 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCDay/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCDay/this-value-non-object.js index a10626547b..65646ebe8d 100644 --- a/test/built-ins/Date/prototype/getUTCDay/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCDay/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcdaty -es6id: 20.3.4.13 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCDay/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCDay/this-value-valid-date.js index 4bb42fa5fb..475519e616 100644 --- a/test/built-ins/Date/prototype/getUTCDay/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCDay/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcday -es6id: 20.3.4.13 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T1.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T1.js index c96f0d581d..f4a2807797 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T2.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T2.js index db54c4e560..df12710908 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T3.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T3.js index 76ac39c617..25072578ee 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A2_T1.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A2_T1.js index 392c4f2270..9db7fb93fa 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCFullYear" is 0 esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A2_T1 description: The "length" property of the "getUTCFullYear" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T1.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T1.js index f723dcd3a1..a2c78d30cb 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T2.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T2.js index 12616454fc..0cf06c3675 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCFullYear property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T3.js b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T3.js index 973396f11d..eccdd11ab8 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/S15.9.5.11_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcfullyear -es5id: 15.9.5.11_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCFullYear/name.js b/test/built-ins/Date/prototype/getUTCFullYear/name.js index a24df2c30b..5e82db33e0 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/name.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcfullyear -es6id: 20.3.4.14 description: > Date.prototype.getUTCFullYear.name is "getUTCFullYear". info: | diff --git a/test/built-ins/Date/prototype/getUTCFullYear/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCFullYear/this-value-invalid-date.js index dfb8121054..32510842a0 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcfullyear -es6id: 20.3.4.14 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-date.js index b64b3df416..7c540d4665 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcfullyear -es6id: 20.3.4.14 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-object.js index 4938d9ec39..e6ae87fd1c 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcfullyear -es6id: 20.3.4.14 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCFullYear/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCFullYear/this-value-valid-date.js index 18a4139976..af78d6c6e8 100644 --- a/test/built-ins/Date/prototype/getUTCFullYear/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCFullYear/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcfullyear -es6id: 20.3.4.14 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T1.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T1.js index a34f021090..e3b1dc5014 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCHours" has { DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T2.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T2.js index da81ad63dd..75f8dfdd75 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCHours" has { DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T3.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T3.js index 1109de1d06..27fdc7ef7c 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCHours" has { DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A2_T1.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A2_T1.js index 1d9e61e9fd..ada287bc6e 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCHours" is 0 esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A2_T1 description: The "length" property of the "getUTCHours" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T1.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T1.js index a6027b6c31..58243b507a 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T2.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T2.js index 9a83ba9687..6c8b0b3128 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCHours property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T3.js b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T3.js index f8f01c1f6f..acb9092f35 100644 --- a/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCHours/S15.9.5.19_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutchours -es5id: 15.9.5.19_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCHours/name.js b/test/built-ins/Date/prototype/getUTCHours/name.js index ae40a96e2b..0edd4136d1 100644 --- a/test/built-ins/Date/prototype/getUTCHours/name.js +++ b/test/built-ins/Date/prototype/getUTCHours/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutchours -es6id: 20.3.4.15 description: > Date.prototype.getUTCHours.name is "getUTCHours". info: | diff --git a/test/built-ins/Date/prototype/getUTCHours/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCHours/this-value-invalid-date.js index e3dc1233bf..e4270f415c 100644 --- a/test/built-ins/Date/prototype/getUTCHours/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCHours/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutchours -es6id: 20.3.4.15 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCHours/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCHours/this-value-non-date.js index 5a094cf771..2e46dc974c 100644 --- a/test/built-ins/Date/prototype/getUTCHours/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCHours/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutchours -es6id: 20.3.4.15 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCHours/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCHours/this-value-non-object.js index f87e549b27..62d44a4b86 100644 --- a/test/built-ins/Date/prototype/getUTCHours/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCHours/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutchours -es6id: 20.3.4.15 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCHours/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCHours/this-value-valid-date.js index 2db9f8ed47..69801ee499 100644 --- a/test/built-ins/Date/prototype/getUTCHours/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCHours/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutchours -es6id: 20.3.4.15 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T1.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T1.js index 7ca02ffca5..dd12c55d7e 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T2.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T2.js index 5d8c8b31f6..46ecd8c270 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T3.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T3.js index 0c0a8d319f..77bf3cc91a 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "getUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A2_T1.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A2_T1.js index 2d8a11c1bb..08c5f4f468 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCMilliseconds" is 0 esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A2_T1 description: The "length" property of the "getUTCMilliseconds" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T1.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T1.js index a75acd7b1e..52eaa9a58e 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T2.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T2.js index 9b079694f4..0e61b88581 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMilliseconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T3.js b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T3.js index 7a33960ae2..cd2777349b 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/S15.9.5.25_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmilliseconds -es5id: 15.9.5.25_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/name.js b/test/built-ins/Date/prototype/getUTCMilliseconds/name.js index a4906b30ba..0b0628feb5 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/name.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcmilliseconds -es6id: 20.3.4.16 description: > Date.prototype.getUTCMilliseconds.name is "getUTCMilliseconds". info: | diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-invalid-date.js index 23f15f71c7..d9c188e7a5 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmilliseconds -es6id: 20.3.4.16 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-date.js index 6c20b2ed70..987a004600 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmilliseconds -es6id: 20.3.4.16 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-object.js index 7cbcb0848c..9aea35fb6d 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmilliseconds -es6id: 20.3.4.16 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-valid-date.js index a0cfa89568..19683ad305 100644 --- a/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCMilliseconds/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmmilliseconds -es6id: 20.3.4.16 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T1.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T1.js index de48fbbabe..5bd473a543 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T2.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T2.js index 04951c393d..5214d2dbc0 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T3.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T3.js index bcf79fcdca..06d4e43194 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A2_T1.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A2_T1.js index 0704d95d0d..7108daa833 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCMinutes" is 0 esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A2_T1 description: The "length" property of the "getUTCMinutes" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T1.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T1.js index 26024d5fae..64cb69e17a 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T2.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T2.js index c33ebaaea0..b54aca963c 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMinutes property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T3.js b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T3.js index b5b26ff33e..0fa1eb67d2 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/S15.9.5.21_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcminutes -es5id: 15.9.5.21_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMinutes/name.js b/test/built-ins/Date/prototype/getUTCMinutes/name.js index 1deb2eea0f..96b1751b9b 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/name.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcminutes -es6id: 20.3.4.17 description: > Date.prototype.getUTCMinutes.name is "getUTCMinutes". info: | diff --git a/test/built-ins/Date/prototype/getUTCMinutes/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCMinutes/this-value-invalid-date.js index 73645b901c..cd45cccdc9 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcminutes -es6id: 20.3.4.17 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-date.js index 10e42c208c..ee89641093 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcminutes -es6id: 20.3.4.17 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-object.js index 8bd596246c..abcb5cce80 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcminutes -es6id: 20.3.4.17 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMinutes/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCMinutes/this-value-valid-date.js index f1d37366dc..8eac81758d 100644 --- a/test/built-ins/Date/prototype/getUTCMinutes/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCMinutes/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcminutes -es6id: 20.3.4.17 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js index 7e18abfda1..a765ec36cc 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js index a36fde2dbd..e5b23cabab 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js index bdff66e89a..61e42248e0 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js index 987754bcce..33d73577ad 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCMonth" is 0 esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A2_T1 description: The "length" property of the "getUTCMonth" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js index 733c4ccce3..942626f942 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js index 7f1b9e9110..b7ea5dc4f1 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMonth property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js index f2258b3150..2518e6e6e3 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcmonth -es5id: 15.9.5.13_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCMonth/name.js b/test/built-ins/Date/prototype/getUTCMonth/name.js index adc1ffc64e..557d38976f 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/name.js +++ b/test/built-ins/Date/prototype/getUTCMonth/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcmonth -es6id: 20.3.4.18 description: > Date.prototype.getUTCMonth.name is "getUTCMonth". info: | diff --git a/test/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js index 572c81f8a7..93d91f7e13 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmonth -es6id: 20.3.4.18 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js index cfb11a6a96..fd7fbf91c9 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmonth -es6id: 20.3.4.18 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js index 4c33ad2fb8..11b8d00c00 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmonth -es6id: 20.3.4.18 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js index 20233307d4..0731a8e00b 100644 --- a/test/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcmonth -es6id: 20.3.4.18 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T1.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T1.js index 634414bb1e..f6933cc3b1 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T1.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T2.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T2.js index 4a56c810f9..4c2cd00991 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T2.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T3.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T3.js index c727249732..016dc36712 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T3.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "getUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A2_T1.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A2_T1.js index e621eb0bcd..b1fd9cb383 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A2_T1.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "getUTCSeconds" is 0 esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A2_T1 description: The "length" property of the "getUTCSeconds" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T1.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T1.js index 790971f489..543359fc49 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T1.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T2.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T2.js index 8ee7aa797a..67dfc2343d 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T2.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCSeconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T3.js b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T3.js index 2a35566750..6d833b4290 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T3.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/S15.9.5.23_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.getUTCSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.getutcseconds -es5id: 15.9.5.23_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/getUTCSeconds/name.js b/test/built-ins/Date/prototype/getUTCSeconds/name.js index 2bc3e984da..aba5e98e62 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/name.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.getutcseconds -es6id: 20.3.4.19 description: > Date.prototype.getUTCSeconds.name is "getUTCSeconds". info: | diff --git a/test/built-ins/Date/prototype/getUTCSeconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/getUTCSeconds/this-value-invalid-date.js index 1dc7952165..65f5944ae1 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcseconds -es6id: 20.3.4.19 description: Return value for invalid date info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-date.js b/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-date.js index 7e05c14405..a3e6d165b5 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcseconds -es6id: 20.3.4.19 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-object.js b/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-object.js index 6f9e979f7c..0c11c3c9ef 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcseconds -es6id: 20.3.4.19 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/getUTCSeconds/this-value-valid-date.js b/test/built-ins/Date/prototype/getUTCSeconds/this-value-valid-date.js index 689d38cdba..1513748fb0 100644 --- a/test/built-ins/Date/prototype/getUTCSeconds/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/getUTCSeconds/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.getutcseconds -es6id: 20.3.4.19 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T1.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T1.js index 44bf2281f4..be971a26af 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T1.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setDate" has { DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T2.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T2.js index 106d19e4f3..8a10e21b87 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T2.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setDate" has { DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T3.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T3.js index 90cdad160c..ced56ef8be 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T3.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setDate" has { DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A2_T1.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A2_T1.js index c85ae0c509..dff21010b4 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A2_T1.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setDate" is 1 esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A2_T1 description: The "length" property of the "setDate" is 1 ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T1.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T1.js index 7dcf1d3824..111211ae5d 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T1.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T2.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T2.js index 83862dd217..2006e8f389 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T2.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setDate property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T3.js b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T3.js index 52762004e5..c1fb9bf2f4 100644 --- a/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T3.js +++ b/test/built-ins/Date/prototype/setDate/S15.9.5.36_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setdate -es5id: 15.9.5.36_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setDate/arg-to-number-err.js b/test/built-ins/Date/prototype/setDate/arg-to-number-err.js index 265610fdde..663afa94c4 100644 --- a/test/built-ins/Date/prototype/setDate/arg-to-number-err.js +++ b/test/built-ins/Date/prototype/setDate/arg-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: Abrupt completion during type coercion of provided argument info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setDate/arg-to-number.js b/test/built-ins/Date/prototype/setDate/arg-to-number.js index 188da1d17d..581ad4f95e 100644 --- a/test/built-ins/Date/prototype/setDate/arg-to-number.js +++ b/test/built-ins/Date/prototype/setDate/arg-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: Type coercion of provided argument info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setDate/name.js b/test/built-ins/Date/prototype/setDate/name.js index 29642aad59..34fb2189d6 100644 --- a/test/built-ins/Date/prototype/setDate/name.js +++ b/test/built-ins/Date/prototype/setDate/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: > Date.prototype.setDate.name is "setDate". info: | diff --git a/test/built-ins/Date/prototype/setDate/new-value-time-clip.js b/test/built-ins/Date/prototype/setDate/new-value-time-clip.js index ad9683617f..b82a0c7c37 100644 --- a/test/built-ins/Date/prototype/setDate/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setDate/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setDate/this-value-invalid-date.js b/test/built-ins/Date/prototype/setDate/this-value-invalid-date.js index 1537d97ccd..3eff15d2ca 100644 --- a/test/built-ins/Date/prototype/setDate/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setDate/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setDate/this-value-non-date.js b/test/built-ins/Date/prototype/setDate/this-value-non-date.js index aaf62bd18e..0228cd5de4 100644 --- a/test/built-ins/Date/prototype/setDate/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setDate/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setDate/this-value-non-object.js b/test/built-ins/Date/prototype/setDate/this-value-non-object.js index 01e38abb99..84bd7b5b44 100644 --- a/test/built-ins/Date/prototype/setDate/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setDate/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setDate/this-value-valid-date.js b/test/built-ins/Date/prototype/setDate/this-value-valid-date.js index 8d368a2dfd..8a01cecd98 100644 --- a/test/built-ins/Date/prototype/setDate/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/setDate/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setdate -es6id: 20.3.4.20 description: Return value for valid dates info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setFullYear/15.9.5.40_1.js b/test/built-ins/Date/prototype/setFullYear/15.9.5.40_1.js index 446066ceca..2156d4e454 100644 --- a/test/built-ins/Date/prototype/setFullYear/15.9.5.40_1.js +++ b/test/built-ins/Date/prototype/setFullYear/15.9.5.40_1.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_1 description: > Date.prototype.setFullYear - Date.prototype is itself not an instance of Date diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T1.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T1.js index 87c6dfceca..8e53e263f5 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T1.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setFullYear" has { DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T2.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T2.js index 2614ce2be8..d526ef3558 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T2.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setFullYear" has { DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T3.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T3.js index 506cc08696..7a52842dd2 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T3.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setFullYear" has { DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A2_T1.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A2_T1.js index 4cab3b3347..71a898f72b 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A2_T1.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setFullYear" is 3 esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A2_T1 description: The "length" property of the "setFullYear" is 3 ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T1.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T1.js index 310716acf9..e1621fcf1f 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T1.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T2.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T2.js index 5dab62ff42..8dab01a01b 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T2.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setFullYear property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T3.js b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T3.js index 170c26f653..6c6eadadf8 100644 --- a/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T3.js +++ b/test/built-ins/Date/prototype/setFullYear/S15.9.5.40_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setfullyear -es5id: 15.9.5.40_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setFullYear/arg-date-to-number-err.js b/test/built-ins/Date/prototype/setFullYear/arg-date-to-number-err.js index 12a7953bc9..f1b0358b5a 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-date-to-number-err.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-date-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Abrupt completion during type coercion of provided "date" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setFullYear/arg-date-to-number.js b/test/built-ins/Date/prototype/setFullYear/arg-date-to-number.js index 40907bf5b9..40cfd31539 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-date-to-number.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-date-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Type coercion of provided "date" info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/arg-month-to-number-err.js b/test/built-ins/Date/prototype/setFullYear/arg-month-to-number-err.js index e5fa119278..f1de8478df 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-month-to-number-err.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-month-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Abrupt completion during type coercion of provided "month" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setFullYear/arg-month-to-number.js b/test/built-ins/Date/prototype/setFullYear/arg-month-to-number.js index ff4cdc3077..6cb2b9ed70 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-month-to-number.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-month-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Type coercion of provided "month" info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/arg-year-to-number-err.js b/test/built-ins/Date/prototype/setFullYear/arg-year-to-number-err.js index a9369c3fa4..67fe061bcb 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-year-to-number-err.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-year-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Abrupt completion during type coercion of provided "year" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setFullYear/arg-year-to-number.js b/test/built-ins/Date/prototype/setFullYear/arg-year-to-number.js index 3fbb4fde63..8f5c799777 100644 --- a/test/built-ins/Date/prototype/setFullYear/arg-year-to-number.js +++ b/test/built-ins/Date/prototype/setFullYear/arg-year-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Type coercion of provided "year" info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/name.js b/test/built-ins/Date/prototype/setFullYear/name.js index 39507900ec..bf79449732 100644 --- a/test/built-ins/Date/prototype/setFullYear/name.js +++ b/test/built-ins/Date/prototype/setFullYear/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: > Date.prototype.setFullYear.name is "setFullYear". info: | diff --git a/test/built-ins/Date/prototype/setFullYear/new-value-time-clip.js b/test/built-ins/Date/prototype/setFullYear/new-value-time-clip.js index b3d73dd27f..b74a9ca327 100644 --- a/test/built-ins/Date/prototype/setFullYear/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setFullYear/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-invalid-date.js b/test/built-ins/Date/prototype/setFullYear/this-value-invalid-date.js index cfa2f055e8..517ff33425 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-non-date.js b/test/built-ins/Date/prototype/setFullYear/this-value-non-date.js index 266e1e24fb..aff73a8cf5 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-non-object.js b/test/built-ins/Date/prototype/setFullYear/this-value-non-object.js index d5eca8304b..14fe4cba38 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-date.js b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-date.js index 0e6e247f55..5e229f5049 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-date.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Return value for valid dates (setting date) info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-month.js b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-month.js index f522b1f96e..233d42ba7f 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-month.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-month.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Return value for valid dates (setting month) info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-year.js b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-year.js index cbd2e977f6..b4a741e180 100644 --- a/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-year.js +++ b/test/built-ins/Date/prototype/setFullYear/this-value-valid-date-year.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setfullyear -es6id: 20.3.4.21 description: Return value for valid dates (setting year) info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T1.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T1.js index 95b5a5a210..06f32576a6 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T1.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setHours" has { DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T2.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T2.js index a46d72b437..01876a0944 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T2.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setHours" has { DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T3.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T3.js index 9d005c8e7c..3cc648296f 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T3.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setHours" has { DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A2_T1.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A2_T1.js index 7b8bfb66aa..5b01685b51 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A2_T1.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setHours" is 4 esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A2_T1 description: The "length" property of the "setHours" is 4 ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T1.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T1.js index d3c95423e8..5c31a437eb 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T1.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T2.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T2.js index 83d468f5d6..69378fa134 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T2.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setHours property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T3.js b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T3.js index d33d529cd0..86de2a76be 100644 --- a/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T3.js +++ b/test/built-ins/Date/prototype/setHours/S15.9.5.34_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.sethours -es5id: 15.9.5.34_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setHours/arg-hour-to-number-err.js b/test/built-ins/Date/prototype/setHours/arg-hour-to-number-err.js index 0ee38e978a..7db1c80a09 100644 --- a/test/built-ins/Date/prototype/setHours/arg-hour-to-number-err.js +++ b/test/built-ins/Date/prototype/setHours/arg-hour-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Abrupt completion during type coercion of provided "hour" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-hour-to-number.js b/test/built-ins/Date/prototype/setHours/arg-hour-to-number.js index 39ca58709d..39cd290156 100644 --- a/test/built-ins/Date/prototype/setHours/arg-hour-to-number.js +++ b/test/built-ins/Date/prototype/setHours/arg-hour-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Type coercion of provided "hour" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-min-to-number-err.js b/test/built-ins/Date/prototype/setHours/arg-min-to-number-err.js index 209eb0b64b..2caa05ccee 100644 --- a/test/built-ins/Date/prototype/setHours/arg-min-to-number-err.js +++ b/test/built-ins/Date/prototype/setHours/arg-min-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Abrupt completion during type coercion of provided "min" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-min-to-number.js b/test/built-ins/Date/prototype/setHours/arg-min-to-number.js index 20e8310d18..0218882f3d 100644 --- a/test/built-ins/Date/prototype/setHours/arg-min-to-number.js +++ b/test/built-ins/Date/prototype/setHours/arg-min-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Type coercion of provided "min" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-ms-to-number-err.js b/test/built-ins/Date/prototype/setHours/arg-ms-to-number-err.js index f3017a3a27..ef6730c087 100644 --- a/test/built-ins/Date/prototype/setHours/arg-ms-to-number-err.js +++ b/test/built-ins/Date/prototype/setHours/arg-ms-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Abrupt completion during type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-ms-to-number.js b/test/built-ins/Date/prototype/setHours/arg-ms-to-number.js index 6d2e10092f..09ac55d8a0 100644 --- a/test/built-ins/Date/prototype/setHours/arg-ms-to-number.js +++ b/test/built-ins/Date/prototype/setHours/arg-ms-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-sec-to-number-err.js b/test/built-ins/Date/prototype/setHours/arg-sec-to-number-err.js index 04bc8c6298..9284ead229 100644 --- a/test/built-ins/Date/prototype/setHours/arg-sec-to-number-err.js +++ b/test/built-ins/Date/prototype/setHours/arg-sec-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Abrupt completion during type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/arg-sec-to-number.js b/test/built-ins/Date/prototype/setHours/arg-sec-to-number.js index b528318eb9..99fbb2645c 100644 --- a/test/built-ins/Date/prototype/setHours/arg-sec-to-number.js +++ b/test/built-ins/Date/prototype/setHours/arg-sec-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/name.js b/test/built-ins/Date/prototype/setHours/name.js index 073ec8d6ed..56399ec611 100644 --- a/test/built-ins/Date/prototype/setHours/name.js +++ b/test/built-ins/Date/prototype/setHours/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: > Date.prototype.setHours.name is "setHours". info: | diff --git a/test/built-ins/Date/prototype/setHours/new-value-time-clip.js b/test/built-ins/Date/prototype/setHours/new-value-time-clip.js index 54d11b14ce..58b828af9c 100644 --- a/test/built-ins/Date/prototype/setHours/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setHours/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/this-value-invalid-date.js b/test/built-ins/Date/prototype/setHours/this-value-invalid-date.js index 80f2b84f17..cac14790d5 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setHours/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setHours/this-value-non-date.js b/test/built-ins/Date/prototype/setHours/this-value-non-date.js index b24069fbe7..fb284a41be 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setHours/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setHours/this-value-non-object.js b/test/built-ins/Date/prototype/setHours/this-value-non-object.js index 818f477721..7aede008c7 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setHours/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/this-value-valid-date-hour.js b/test/built-ins/Date/prototype/setHours/this-value-valid-date-hour.js index 75dbd62a1a..70f7da0364 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-valid-date-hour.js +++ b/test/built-ins/Date/prototype/setHours/this-value-valid-date-hour.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Return value for valid dates (setting hour) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/this-value-valid-date-min.js b/test/built-ins/Date/prototype/setHours/this-value-valid-date-min.js index b021ee6313..f16d716ad6 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-valid-date-min.js +++ b/test/built-ins/Date/prototype/setHours/this-value-valid-date-min.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Return value for valid dates (setting min) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/this-value-valid-date-ms.js b/test/built-ins/Date/prototype/setHours/this-value-valid-date-ms.js index 6d48682fc3..543b2f865c 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-valid-date-ms.js +++ b/test/built-ins/Date/prototype/setHours/this-value-valid-date-ms.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Return value for valid dates (setting ms) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setHours/this-value-valid-date-sec.js b/test/built-ins/Date/prototype/setHours/this-value-valid-date-sec.js index 63f80846d6..d9d4d01e4c 100644 --- a/test/built-ins/Date/prototype/setHours/this-value-valid-date-sec.js +++ b/test/built-ins/Date/prototype/setHours/this-value-valid-date-sec.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.sethours -es6id: 20.3.4.22 description: Return value for valid dates (setting sec) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T1.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T1.js index ff1c5768b6..20bb05d710 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T1.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T2.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T2.js index 7af41c60df..c3a028fb2d 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T2.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T3.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T3.js index 9f8624a50b..c53c2532bd 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T3.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A2_T1.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A2_T1.js index e784ed356a..fa51cd489c 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A2_T1.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setMilliseconds" is 1 esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A2_T1 description: The "length" property of the "setMilliseconds" is 1 ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T1.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T1.js index 4f15d857d4..ddb14aae6b 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T1.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T2.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T2.js index 44772a4fb8..0646e6dcee 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T2.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMilliseconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T3.js b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T3.js index f0af044b59..72124484a0 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T3.js +++ b/test/built-ins/Date/prototype/setMilliseconds/S15.9.5.28_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setmilliseconds -es5id: 15.9.5.28_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMilliseconds/arg-to-number-err.js b/test/built-ins/Date/prototype/setMilliseconds/arg-to-number-err.js index e5ef61a411..b802bb1650 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/arg-to-number-err.js +++ b/test/built-ins/Date/prototype/setMilliseconds/arg-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: Abrupt completion during type coercion of provided argument info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMilliseconds/arg-to-number.js b/test/built-ins/Date/prototype/setMilliseconds/arg-to-number.js index 7e8d6c2fe4..0ac3def988 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/arg-to-number.js +++ b/test/built-ins/Date/prototype/setMilliseconds/arg-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: Type coercion of provided argument info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMilliseconds/name.js b/test/built-ins/Date/prototype/setMilliseconds/name.js index 7168144274..a5f4df85ba 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/name.js +++ b/test/built-ins/Date/prototype/setMilliseconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: > Date.prototype.setMilliseconds.name is "setMilliseconds". info: | diff --git a/test/built-ins/Date/prototype/setMilliseconds/new-value-time-clip.js b/test/built-ins/Date/prototype/setMilliseconds/new-value-time-clip.js index 5a0b9e0bb6..d2f9f8f367 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setMilliseconds/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMilliseconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/setMilliseconds/this-value-invalid-date.js index bd3245798e..d431179449 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setMilliseconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setMilliseconds/this-value-non-date.js b/test/built-ins/Date/prototype/setMilliseconds/this-value-non-date.js index c9e30c016e..0764a07113 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setMilliseconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setMilliseconds/this-value-non-object.js b/test/built-ins/Date/prototype/setMilliseconds/this-value-non-object.js index ae43ddd812..9f2c2823f9 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setMilliseconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMilliseconds/this-value-valid-date.js b/test/built-ins/Date/prototype/setMilliseconds/this-value-valid-date.js index 95714f3afb..b9e101a840 100644 --- a/test/built-ins/Date/prototype/setMilliseconds/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/setMilliseconds/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmilliseconds -es6id: 20.3.4.23 description: Return value for valid dates info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T1.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T1.js index 66a0393335..12f2e012bb 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T1.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMinutes" has { DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T2.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T2.js index 050e72b87b..e4280427f6 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T2.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMinutes" has { DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T3.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T3.js index aa2534cbaf..0bc29a9775 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T3.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMinutes" has { DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A2_T1.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A2_T1.js index 307c3faf82..1f99ec7f01 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A2_T1.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setMinutes" is 3 esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A2_T1 description: The "length" property of the "setMinutes" is 3 ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T1.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T1.js index 87f5bd6c28..f3f4ea4f06 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T1.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T2.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T2.js index 2defce23d6..746111fec3 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T2.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMinutes property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T3.js b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T3.js index 8d0ec12157..1f32ecff8f 100644 --- a/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T3.js +++ b/test/built-ins/Date/prototype/setMinutes/S15.9.5.32_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setminutes -es5id: 15.9.5.32_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMinutes/arg-min-to-number-err.js b/test/built-ins/Date/prototype/setMinutes/arg-min-to-number-err.js index 01adc5f6e4..c54c3410c0 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-min-to-number-err.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-min-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Abrupt completion during type coercion of provided "min" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/arg-min-to-number.js b/test/built-ins/Date/prototype/setMinutes/arg-min-to-number.js index 04c4e12b32..ac765cc9e9 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-min-to-number.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-min-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Type coercion of provided "min" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number-err.js b/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number-err.js index d2eb4582b5..b4a67ba88d 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number-err.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Abrupt completion during type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number.js b/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number.js index b3eefdd307..d982f187d5 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-ms-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number-err.js b/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number-err.js index a5d2d6ef6a..7d082878d4 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number-err.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Abrupt completion during type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number.js b/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number.js index 755a787f17..04df174754 100644 --- a/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number.js +++ b/test/built-ins/Date/prototype/setMinutes/arg-sec-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/name.js b/test/built-ins/Date/prototype/setMinutes/name.js index 8a4b06568d..f8032bfd1d 100644 --- a/test/built-ins/Date/prototype/setMinutes/name.js +++ b/test/built-ins/Date/prototype/setMinutes/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: > Date.prototype.setMinutes.name is "setMinutes". info: | diff --git a/test/built-ins/Date/prototype/setMinutes/new-value-time-clip.js b/test/built-ins/Date/prototype/setMinutes/new-value-time-clip.js index 9d9af7b9ad..b6b6f3fd6f 100644 --- a/test/built-ins/Date/prototype/setMinutes/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setMinutes/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/this-value-invalid-date.js b/test/built-ins/Date/prototype/setMinutes/this-value-invalid-date.js index 8ab883f701..760f19f58a 100644 --- a/test/built-ins/Date/prototype/setMinutes/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setMinutes/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setMinutes/this-value-non-date.js b/test/built-ins/Date/prototype/setMinutes/this-value-non-date.js index c05ea01a52..94ca523452 100644 --- a/test/built-ins/Date/prototype/setMinutes/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setMinutes/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setMinutes/this-value-non-object.js b/test/built-ins/Date/prototype/setMinutes/this-value-non-object.js index 30e6c254a8..cbd1585db5 100644 --- a/test/built-ins/Date/prototype/setMinutes/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setMinutes/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMinutes/this-value-valid-date.js b/test/built-ins/Date/prototype/setMinutes/this-value-valid-date.js index 22f3c4a277..823835cd3b 100644 --- a/test/built-ins/Date/prototype/setMinutes/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/setMinutes/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setminutes -es6id: 20.3.4.24 description: Return value for valid dates info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T1.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T1.js index c38de02142..c35b997f87 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T1.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMonth" has { DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T2.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T2.js index 9c1ab2a20a..3b2f394345 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T2.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMonth" has { DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T3.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T3.js index 14a0d15377..9def6a62d3 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T3.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setMonth" has { DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A2_T1.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A2_T1.js index 8a5de9ca46..e7e7c7e981 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A2_T1.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setMonth" is 2 esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A2_T1 description: The "length" property of the "setMonth" is 2 ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T1.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T1.js index 0fad78a29e..9e7910f8e6 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T1.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T2.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T2.js index efca28cee2..6d23c5a54e 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T2.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMonth property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T3.js b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T3.js index ef07cbb5c1..00d506bb73 100644 --- a/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T3.js +++ b/test/built-ins/Date/prototype/setMonth/S15.9.5.38_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setmonth -es5id: 15.9.5.38_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setMonth/arg-date-to-number-err.js b/test/built-ins/Date/prototype/setMonth/arg-date-to-number-err.js index 8b6d591d0b..93295d9c16 100644 --- a/test/built-ins/Date/prototype/setMonth/arg-date-to-number-err.js +++ b/test/built-ins/Date/prototype/setMonth/arg-date-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Abrupt completion during type coercion of provided "date" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMonth/arg-date-to-number.js b/test/built-ins/Date/prototype/setMonth/arg-date-to-number.js index 8f9477132a..1ce319a199 100644 --- a/test/built-ins/Date/prototype/setMonth/arg-date-to-number.js +++ b/test/built-ins/Date/prototype/setMonth/arg-date-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Type coercion of provided "date" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMonth/arg-month-to-number-err.js b/test/built-ins/Date/prototype/setMonth/arg-month-to-number-err.js index 20762fe2f8..bd7a5a489b 100644 --- a/test/built-ins/Date/prototype/setMonth/arg-month-to-number-err.js +++ b/test/built-ins/Date/prototype/setMonth/arg-month-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Abrupt completion during type coercion of provided "month" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMonth/arg-month-to-number.js b/test/built-ins/Date/prototype/setMonth/arg-month-to-number.js index 971803ac19..36d05418a7 100644 --- a/test/built-ins/Date/prototype/setMonth/arg-month-to-number.js +++ b/test/built-ins/Date/prototype/setMonth/arg-month-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Type coercion of provided "month" info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setMonth/name.js b/test/built-ins/Date/prototype/setMonth/name.js index c4332e6aa9..f2ea94ddd6 100644 --- a/test/built-ins/Date/prototype/setMonth/name.js +++ b/test/built-ins/Date/prototype/setMonth/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: > Date.prototype.setMonth.name is "setMonth". info: | diff --git a/test/built-ins/Date/prototype/setMonth/new-value-time-clip.js b/test/built-ins/Date/prototype/setMonth/new-value-time-clip.js index 3ea6b8f90a..445701bd68 100644 --- a/test/built-ins/Date/prototype/setMonth/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setMonth/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setMonth/this-value-invalid-date.js b/test/built-ins/Date/prototype/setMonth/this-value-invalid-date.js index bb3783aab8..9327a09940 100644 --- a/test/built-ins/Date/prototype/setMonth/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setMonth/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setMonth/this-value-non-date.js b/test/built-ins/Date/prototype/setMonth/this-value-non-date.js index 351dde0e43..99019ea8a6 100644 --- a/test/built-ins/Date/prototype/setMonth/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setMonth/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setMonth/this-value-non-object.js b/test/built-ins/Date/prototype/setMonth/this-value-non-object.js index 52dab804ac..304bf415df 100644 --- a/test/built-ins/Date/prototype/setMonth/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setMonth/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Behavior when "this" value is not an Object info: | 1. Let t be ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setMonth/this-value-valid-date-date.js b/test/built-ins/Date/prototype/setMonth/this-value-valid-date-date.js index 2a6a1c5781..7e9f608112 100644 --- a/test/built-ins/Date/prototype/setMonth/this-value-valid-date-date.js +++ b/test/built-ins/Date/prototype/setMonth/this-value-valid-date-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Return value for valid dates (setting date) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setMonth/this-value-valid-date-month.js b/test/built-ins/Date/prototype/setMonth/this-value-valid-date-month.js index b2084952ce..07a8170645 100644 --- a/test/built-ins/Date/prototype/setMonth/this-value-valid-date-month.js +++ b/test/built-ins/Date/prototype/setMonth/this-value-valid-date-month.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setmonth -es6id: 20.3.4.25 description: Return value for valid dates (setting month) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T1.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T1.js index 519120b36f..76ec0c0db9 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T1.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setSeconds" has { DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T2.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T2.js index f9f122a645..d79978abe3 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T2.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setSeconds" has { DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T3.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T3.js index 8d960dcb62..8023a08199 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T3.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setSeconds" has { DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A2_T1.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A2_T1.js index a2fe30e525..97724d7ef3 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A2_T1.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setSeconds" is 2 esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A2_T1 description: The "length" property of the "setSeconds" is 2 ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T1.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T1.js index 84cdd154e8..4d994c9636 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T1.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T2.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T2.js index be61ed9a8b..76fe46aa8e 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T2.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setSeconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T3.js b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T3.js index 5a281d8d04..be9a1ecfe0 100644 --- a/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T3.js +++ b/test/built-ins/Date/prototype/setSeconds/S15.9.5.30_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setseconds -es5id: 15.9.5.30_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number-err.js b/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number-err.js index ee86d2dd91..e3e68be873 100644 --- a/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number-err.js +++ b/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Abrupt completion during type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number.js b/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number.js index 5b9afa06fd..66caa7c97b 100644 --- a/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number.js +++ b/test/built-ins/Date/prototype/setSeconds/arg-ms-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Type coercion of provided "ms" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number-err.js b/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number-err.js index d3df83fea9..1058a1b604 100644 --- a/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number-err.js +++ b/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Abrupt completion during type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number.js b/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number.js index 37f86dc126..474b096476 100644 --- a/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number.js +++ b/test/built-ins/Date/prototype/setSeconds/arg-sec-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Type coercion of provided "sec" info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/name.js b/test/built-ins/Date/prototype/setSeconds/name.js index 2fca4bb845..4b8555d2f4 100644 --- a/test/built-ins/Date/prototype/setSeconds/name.js +++ b/test/built-ins/Date/prototype/setSeconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: > Date.prototype.setSeconds.name is "setSeconds". info: | diff --git a/test/built-ins/Date/prototype/setSeconds/new-value-time-clip.js b/test/built-ins/Date/prototype/setSeconds/new-value-time-clip.js index 737045bd76..adebc07570 100644 --- a/test/built-ins/Date/prototype/setSeconds/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setSeconds/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/this-value-invalid-date.js b/test/built-ins/Date/prototype/setSeconds/this-value-invalid-date.js index fe0061bedd..2896704eec 100644 --- a/test/built-ins/Date/prototype/setSeconds/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setSeconds/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setSeconds/this-value-non-date.js b/test/built-ins/Date/prototype/setSeconds/this-value-non-date.js index df4ee5b1bb..f670c289d2 100644 --- a/test/built-ins/Date/prototype/setSeconds/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setSeconds/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setSeconds/this-value-non-object.js b/test/built-ins/Date/prototype/setSeconds/this-value-non-object.js index f5f2aac339..1ebcd4469f 100644 --- a/test/built-ins/Date/prototype/setSeconds/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setSeconds/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-ms.js b/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-ms.js index 364ce01c3d..bea26c68cf 100644 --- a/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-ms.js +++ b/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-ms.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Return value for valid dates (setting ms) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-sec.js b/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-sec.js index f90365f133..bb969f1bae 100644 --- a/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-sec.js +++ b/test/built-ins/Date/prototype/setSeconds/this-value-valid-date-sec.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.setseconds -es6id: 20.3.4.26 description: Return value for valid dates (setting sec) info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T1.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T1.js index 2a56bf3ae8..5eca0786d5 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T1.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setTime" has { DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T2.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T2.js index 2e872fd729..0efc5c9304 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T2.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setTime" has { DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T3.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T3.js index 0a9fd6ce56..039e557577 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T3.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setTime" has { DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A2_T1.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A2_T1.js index f7f68712d9..42329cbb45 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A2_T1.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setTime" is 1 esid: sec-date.prototype.settime -es5id: 15.9.5.27_A2_T1 description: The "length" property of the "setTime" is 1 ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T1.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T1.js index 17e0d68ce1..ede6e8f930 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T1.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setTime property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T2.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T2.js index f804e38d9b..3676d0d171 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T2.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setTime property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T3.js b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T3.js index cdd444a6b8..ee35158cf9 100644 --- a/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T3.js +++ b/test/built-ins/Date/prototype/setTime/S15.9.5.27_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setTime property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.settime -es5id: 15.9.5.27_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setTime/arg-to-number-err.js b/test/built-ins/Date/prototype/setTime/arg-to-number-err.js index dc2e542e8b..1fe0fe74da 100644 --- a/test/built-ins/Date/prototype/setTime/arg-to-number-err.js +++ b/test/built-ins/Date/prototype/setTime/arg-to-number-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: Abrupt completion during type coercion of provided argument info: | 1. Perform ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setTime/arg-to-number.js b/test/built-ins/Date/prototype/setTime/arg-to-number.js index 9b52b23f58..200bebee06 100644 --- a/test/built-ins/Date/prototype/setTime/arg-to-number.js +++ b/test/built-ins/Date/prototype/setTime/arg-to-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: Type coercion of provided argument info: | 1. Perform ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setTime/name.js b/test/built-ins/Date/prototype/setTime/name.js index 219d5dfaab..a36bd86108 100644 --- a/test/built-ins/Date/prototype/setTime/name.js +++ b/test/built-ins/Date/prototype/setTime/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: > Date.prototype.setTime.name is "setTime". info: | diff --git a/test/built-ins/Date/prototype/setTime/new-value-time-clip.js b/test/built-ins/Date/prototype/setTime/new-value-time-clip.js index 6ca2d98f79..e06c786f5f 100644 --- a/test/built-ins/Date/prototype/setTime/new-value-time-clip.js +++ b/test/built-ins/Date/prototype/setTime/new-value-time-clip.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: Behavior when new value exceeds [[DateValue]] limits info: | 1. Perform ? thisTimeValue(this value). diff --git a/test/built-ins/Date/prototype/setTime/this-value-invalid-date.js b/test/built-ins/Date/prototype/setTime/this-value-invalid-date.js index dd54c0b854..1e84f7b7f2 100644 --- a/test/built-ins/Date/prototype/setTime/this-value-invalid-date.js +++ b/test/built-ins/Date/prototype/setTime/this-value-invalid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: > Behavior when the "this" value is a Date object describing an invald date info: | diff --git a/test/built-ins/Date/prototype/setTime/this-value-non-date.js b/test/built-ins/Date/prototype/setTime/this-value-non-date.js index ac3194e039..3837a8edf2 100644 --- a/test/built-ins/Date/prototype/setTime/this-value-non-date.js +++ b/test/built-ins/Date/prototype/setTime/this-value-non-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: > Behavior when "this" value is an Object without a [[DateValue]] internal slot info: | diff --git a/test/built-ins/Date/prototype/setTime/this-value-non-object.js b/test/built-ins/Date/prototype/setTime/this-value-non-object.js index 294e09e249..7426c14476 100644 --- a/test/built-ins/Date/prototype/setTime/this-value-non-object.js +++ b/test/built-ins/Date/prototype/setTime/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: Behavior when "this" value is not an Object info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setTime/this-value-valid-date.js b/test/built-ins/Date/prototype/setTime/this-value-valid-date.js index c044f909e4..e9206c2d24 100644 --- a/test/built-ins/Date/prototype/setTime/this-value-valid-date.js +++ b/test/built-ins/Date/prototype/setTime/this-value-valid-date.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date.prototype.settime -es6id: 20.3.4.27 description: Return value for valid dates info: | 1. Let t be LocalTime(? thisTimeValue(this value)). diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T1.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T1.js index c296387b8e..8525b8145f 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCDate" has { DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T2.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T2.js index 3ef3186fac..e16425838f 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCDate" has { DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T3.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T3.js index 90decdc776..f946a01df3 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCDate" has { DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A2_T1.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A2_T1.js index 3cbefe81a8..5a222fe2cb 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCDate" is 1 esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A2_T1 description: The "length" property of the "setUTCDate" is 1 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T1.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T1.js index 078a34ab20..77b2863178 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T2.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T2.js index 5e29f15a81..e9dc6a04e8 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCDate property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T3.js b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T3.js index ffebf07973..f9185c0e45 100644 --- a/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCDate/S15.9.5.37_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCDate property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcdate -es5id: 15.9.5.37_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCDate/name.js b/test/built-ins/Date/prototype/setUTCDate/name.js index c1051fa6bf..66c97f9471 100644 --- a/test/built-ins/Date/prototype/setUTCDate/name.js +++ b/test/built-ins/Date/prototype/setUTCDate/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcdate -es6id: 20.3.4.28 description: > Date.prototype.setUTCDate.name is "setUTCDate". info: | diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T1.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T1.js index fa2e021e24..ecd2cdb46c 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T2.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T2.js index 1d8a1262ce..b139aa3060 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T3.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T3.js index 7abfca4650..39094d72fc 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCFullYear" has { DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A2_T1.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A2_T1.js index 1c332dd811..9c5a768a9a 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCFullYear" is 3 esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A2_T1 description: The "length" property of the "setUTCFullYear" is 3 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T1.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T1.js index 3240cbe5cd..104458f71b 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T2.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T2.js index a2228d5895..bb458af23f 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCFullYear property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T3.js b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T3.js index 6ef0033d83..543ec142bf 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/S15.9.5.41_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCFullYear property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcfullyear -es5id: 15.9.5.41_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCFullYear/name.js b/test/built-ins/Date/prototype/setUTCFullYear/name.js index d2a6419ab8..a0410593f2 100644 --- a/test/built-ins/Date/prototype/setUTCFullYear/name.js +++ b/test/built-ins/Date/prototype/setUTCFullYear/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcfullyear -es6id: 20.3.4.29 description: > Date.prototype.setUTCFullYear.name is "setUTCFullYear". info: | diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T1.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T1.js index 887d73eca8..ca072b6fdd 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCHours" has { DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T2.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T2.js index c314b25bd1..127e7853b9 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCHours" has { DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T3.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T3.js index e7645db480..f899ebc3d0 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCHours" has { DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A2_T1.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A2_T1.js index aff70c61e1..8e21747b51 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCHours" is 4 esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A2_T1 description: The "length" property of the "setUTCHours" is 4 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T1.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T1.js index 720a0385b9..03c657d818 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T2.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T2.js index 907b8712ef..0b88aee1e5 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCHours property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T3.js b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T3.js index c80cf62191..ce514af0f7 100644 --- a/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCHours/S15.9.5.35_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCHours property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutchours -es5id: 15.9.5.35_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCHours/name.js b/test/built-ins/Date/prototype/setUTCHours/name.js index 371395ffae..943e57a55c 100644 --- a/test/built-ins/Date/prototype/setUTCHours/name.js +++ b/test/built-ins/Date/prototype/setUTCHours/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutchours -es6id: 20.3.4.30 description: > Date.prototype.setUTCHours.name is "setUTCHours". info: | diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T1.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T1.js index a1d0a1947a..a3607899f5 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "setUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T2.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T2.js index 4d8fc8fa5d..551092fd05 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "setUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T3.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T3.js index c24ff83d56..bff5f0d94a 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "setUTCMilliseconds" has { DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A2_T1.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A2_T1.js index 345a3e3d35..6297167d85 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCMilliseconds" is 1 esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A2_T1 description: The "length" property of the "setUTCMilliseconds" is 1 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T1.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T1.js index 62833caee6..86f1e8e703 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T2.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T2.js index f70f57b134..e27a373cef 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMilliseconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T3.js b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T3.js index a47a18c295..5f6b68142d 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/S15.9.5.29_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMilliseconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmilliseconds -es5id: 15.9.5.29_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMilliseconds/name.js b/test/built-ins/Date/prototype/setUTCMilliseconds/name.js index f410368537..abbe9fbdde 100644 --- a/test/built-ins/Date/prototype/setUTCMilliseconds/name.js +++ b/test/built-ins/Date/prototype/setUTCMilliseconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcmilliseconds -es6id: 20.3.4.31 description: > Date.prototype.setUTCMilliseconds.name is "setUTCMilliseconds". info: | diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T1.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T1.js index 44c08e64fc..62e0e82f2f 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T2.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T2.js index 3bde3ee4d5..1bec17bf3c 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T3.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T3.js index edc715a860..05e807e989 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMinutes" has { DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A2_T1.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A2_T1.js index bf0efd4767..5cbf82d946 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCMinutes" is 3 esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A2_T1 description: The "length" property of the "setUTCMinutes" is 3 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T1.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T1.js index 63273348e6..cdc21d80ff 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T2.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T2.js index 5b19af2eaf..4da3c3475c 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMinutes property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T3.js b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T3.js index 0614a194bd..d4fe002d1f 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/S15.9.5.33_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMinutes property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcminutes -es5id: 15.9.5.33_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMinutes/name.js b/test/built-ins/Date/prototype/setUTCMinutes/name.js index fefac295e9..3985976210 100644 --- a/test/built-ins/Date/prototype/setUTCMinutes/name.js +++ b/test/built-ins/Date/prototype/setUTCMinutes/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcminutes -es6id: 20.3.4.32 description: > Date.prototype.setUTCMinutes.name is "setUTCMinutes". info: | diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T1.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T1.js index da43ff45f1..3267cff2d1 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T2.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T2.js index 9790d9a99e..0a5545bba2 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T3.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T3.js index ed7332bd2e..d419d97e07 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCMonth" has { DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A2_T1.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A2_T1.js index 682dd9f727..81802c7474 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCMonth" is 2 esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A2_T1 description: The "length" property of the "setUTCMonth" is 2 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T1.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T1.js index 1bbeaada99..20885c07bc 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T2.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T2.js index 07e8dda601..78a0dd4d16 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMonth property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T3.js b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T3.js index 1fee64d567..f3b6bee195 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCMonth/S15.9.5.39_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCMonth property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcmonth -es5id: 15.9.5.39_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCMonth/name.js b/test/built-ins/Date/prototype/setUTCMonth/name.js index 0dc23fbbf8..7231b241d0 100644 --- a/test/built-ins/Date/prototype/setUTCMonth/name.js +++ b/test/built-ins/Date/prototype/setUTCMonth/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcmonth -es6id: 20.3.4.33 description: > Date.prototype.setUTCMonth.name is "setUTCMonth". info: | diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T1.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T1.js index 903d2dc772..e5b297eb95 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T1.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T2.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T2.js index 7d3d1d09e8..a51814ca0d 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T2.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T3.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T3.js index eb427b1ffc..531a529a36 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T3.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "setUTCSeconds" has { DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A2_T1.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A2_T1.js index edcc69006d..205720392b 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A2_T1.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "setUTCSeconds" is 2 esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A2_T1 description: The "length" property of the "setUTCSeconds" is 2 ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T1.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T1.js index 9b6433a1e8..bdfb9efc4d 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T1.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T2.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T2.js index 26c0833404..a9843118b8 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T2.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCSeconds property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T3.js b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T3.js index 2cb04dd625..891c1f4550 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T3.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/S15.9.5.31_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.setUTCSeconds property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.setutcseconds -es5id: 15.9.5.31_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/setUTCSeconds/name.js b/test/built-ins/Date/prototype/setUTCSeconds/name.js index 0267656d06..7eeb7c5be6 100644 --- a/test/built-ins/Date/prototype/setUTCSeconds/name.js +++ b/test/built-ins/Date/prototype/setUTCSeconds/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.setutcseconds -es6id: 20.3.4.34 description: > Date.prototype.setUTCSeconds.name is "setUTCSeconds". info: | diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T1.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T1.js index ce21f347a9..95b4f8d145 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T1.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toDateString" has { DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T2.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T2.js index e72d1fbd8e..f4fd028411 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T2.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toDateString" has { DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T3.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T3.js index ab2d1e72d4..3b7bdcf40d 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T3.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toDateString" has { DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js index 32c140ce94..1e92cd516d 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toDateString" is 0 esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A2_T1 description: The "length" property of the "toDateString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T1.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T1.js index 36ed7992e5..692982b185 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T1.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toDateString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T2.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T2.js index 19bc54bb6a..b2f07c0729 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T2.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toDateString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T3.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T3.js index 0f83f7f219..ce5aae0c2c 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T3.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toDateString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.todatestring -es5id: 15.9.5.3_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toDateString/name.js b/test/built-ins/Date/prototype/toDateString/name.js index a537f483b5..5ecc7ef1be 100644 --- a/test/built-ins/Date/prototype/toDateString/name.js +++ b/test/built-ins/Date/prototype/toDateString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.todatestring -es6id: 20.3.4.35 description: > Date.prototype.toDateString.name is "toDateString". info: | diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-10.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-10.js index f94e964d4d..28245a02d8 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-10.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-10.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-10 description: > Date.prototype.toISOString - RangeError is not thrown when value of date is Date(1970, 0, -99999999, 0, 0, 0, 1), the time zone is diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-11.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-11.js index b08fa65380..66496295f2 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-11.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-11.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-11 description: > Date.prototype.toISOString - RangeError is not thrown when value of date is Date(1970, 0, 100000001, 0, 0, 0, -1), the time zone is diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-12.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-12.js index 2086f48a9a..c7822354a9 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-12.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-12.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-12 description: > Date.prototype.toISOString - RangeError is not thrown when value of date is Date(1970, 0, 100000001, 0, 0, 0, 0), the time zone is diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js index 71a9232eb0..90ce9f84db 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-13 description: > Date.prototype.toISOString - RangeError is thrown when value of date is outside the valid range of time. diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-14.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-14.js index 7dc2be64af..d131e91943 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-14.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-14.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-14 description: > Date.prototype.toISOString - when value of year is -Infinity Date.prototype.toISOString throw the RangeError diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-15.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-15.js index 752120dfc6..6834580f56 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-15.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-15.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-15 description: > Date.prototype.toISOString - value of year is Infinity Date.prototype.toISOString throw the RangeError diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js index d3be4f9fb4..327ea5320a 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-16 description: > Date.prototype.toISOString - when this is a String object that value format is 'YYYY-MM-DDTHH:mm:ss.sssZ' diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-2.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-2.js index 251cf31d40..3ec63ce725 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-2.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-2.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-2 description: > Date.prototype.toISOString must exist as a function taking 0 parameters diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-3.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-3.js index 9703836e16..49f5dd4844 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-3.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-3.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-3 description: Date.prototype.toISOString must exist as a function ---*/ diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-4.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-4.js index d2f2e391eb..c69dee40ce 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-4.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-4.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-4 description: > Date.prototype.toISOString - format of returned string is 'YYYY-MM-DDTHH:mm:ss.sssZ', the time zone is UTC(0) diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-5.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-5.js index 0dc17db6fa..d58b1d1016 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-5.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-5.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-5 description: > Date.prototype.toISOString - The returned string is the UTC time zone(0) diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-6.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-6.js index dda74767f9..073daedd55 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-6.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-6.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-6 description: > Date.prototype.toISOString - TypeError is thrown when this is any other objects instead of Date object diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-7.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-7.js index 517fb74533..36ae0f895b 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-7.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-7.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-7 description: > Date.prototype.toISOString - TypeError is thrown when this is any primitive values diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-8.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-8.js index e85077c6ce..f6a2725648 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-8.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-8.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-8 description: > Date.prototype.toISOString - RangeError is thrown when value of date is Date(1970, 0, -99999999, 0, 0, 0, -1), the time zone is diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-9.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-9.js index 04c9fd69cb..07d919126c 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-9.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-9.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es5id: 15.9.5.43-0-9 description: > Date.prototype.toISOString - RangeError is not thrown when value of date is Date(1970, 0, -99999999, 0, 0, 0, 0), the time zone is diff --git a/test/built-ins/Date/prototype/toISOString/name.js b/test/built-ins/Date/prototype/toISOString/name.js index 87fb2fa3dc..5a8fd4a87d 100644 --- a/test/built-ins/Date/prototype/toISOString/name.js +++ b/test/built-ins/Date/prototype/toISOString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toisostring -es6id: 20.3.4.36 description: > Date.prototype.toISOString.name is "toISOString". info: | diff --git a/test/built-ins/Date/prototype/toJSON/name.js b/test/built-ins/Date/prototype/toJSON/name.js index 52278e81ff..62222cccce 100644 --- a/test/built-ins/Date/prototype/toJSON/name.js +++ b/test/built-ins/Date/prototype/toJSON/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.tojson -es6id: 20.3.4.37 description: > Date.prototype.toJSON.name is "toJSON". info: | diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T1.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T1.js index 8e976f0ed3..b7fcf0aad3 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T1.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleDateString" has { DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T2.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T2.js index 656300446f..b99003b0e0 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T2.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleDateString" has { DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T3.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T3.js index 6a8cef0a64..b9b11d262c 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T3.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleDateString" has { DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A2_T1.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A2_T1.js index 5b7959dc77..24997421f6 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A2_T1.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toLocaleDateString" is 0 esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A2_T1 description: The "length" property of the "toLocaleDateString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T1.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T1.js index 5ca1638b17..5f025e3f8f 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T1.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleDateString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T2.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T2.js index 85565c6bca..6628562198 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T2.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleDateString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T3.js b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T3.js index 63440c5500..8aa7a59986 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T3.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/S15.9.5.6_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleDateString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaledatestring -es5id: 15.9.5.6_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleDateString/name.js b/test/built-ins/Date/prototype/toLocaleDateString/name.js index 5fc0eaf834..c1281afc83 100644 --- a/test/built-ins/Date/prototype/toLocaleDateString/name.js +++ b/test/built-ins/Date/prototype/toLocaleDateString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.tolocaledatestring -es6id: 20.3.4.38 description: > Date.prototype.toLocaleDateString.name is "toLocaleDateString". info: | diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T1.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T1.js index 4f20c546b7..050f166f5b 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T1.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toLocaleString" has { DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T2.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T2.js index 44476c8e43..cc0b2c4a60 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T2.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toLocaleString" has { DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T3.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T3.js index aa96373cbb..d87f2cc462 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T3.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toLocaleString" has { DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A2_T1.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A2_T1.js index 29ba76ea95..67bdab0215 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A2_T1.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toLocaleString" is 0 esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A2_T1 description: The "length" property of the "toLocaleString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T1.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T1.js index 5263d5ff5a..9259d65c2f 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T1.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T2.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T2.js index 161ab95414..98f20901e2 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T2.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T3.js b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T3.js index 5068199094..82700b2719 100644 --- a/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T3.js +++ b/test/built-ins/Date/prototype/toLocaleString/S15.9.5.5_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocalestring -es5id: 15.9.5.5_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleString/name.js b/test/built-ins/Date/prototype/toLocaleString/name.js index 0152fcb2f4..bb80091f59 100644 --- a/test/built-ins/Date/prototype/toLocaleString/name.js +++ b/test/built-ins/Date/prototype/toLocaleString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.tolocalestring -es6id: 20.3.4.39 description: > Date.prototype.toLocaleString.name is "toLocaleString". info: | diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T1.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T1.js index eec3df6ac3..b5ac79c7a8 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T1.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleTimeString" has { DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T2.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T2.js index 4fc755ef25..3347a73075 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T2.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleTimeString" has { DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T3.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T3.js index 5e7cff2a0b..cc7d5f8e45 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T3.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A1_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype property "toLocaleTimeString" has { DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A2_T1.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A2_T1.js index 14f226a02b..077417f6e3 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A2_T1.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toLocaleTimeString" is 0 esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A2_T1 description: The "length" property of the "toLocaleTimeString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T1.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T1.js index b079296b90..0e4b2022b1 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T1.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleTimeString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T2.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T2.js index 8e02b4e6f7..aa07efbd83 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T2.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleTimeString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T3.js b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T3.js index 53aea089b5..7259e6c8d4 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T3.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/S15.9.5.7_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toLocaleTimeString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tolocaletimestring -es5id: 15.9.5.7_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toLocaleTimeString/name.js b/test/built-ins/Date/prototype/toLocaleTimeString/name.js index ee41fc8b50..58655987d0 100644 --- a/test/built-ins/Date/prototype/toLocaleTimeString/name.js +++ b/test/built-ins/Date/prototype/toLocaleTimeString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.tolocaletimestring -es6id: 20.3.4.40 description: > Date.prototype.toLocaleTimeString.name is "toLocaleTimeString". info: | diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T1.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T1.js index c4938dc06f..fa1b16cdb0 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T1.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toString" has { DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T2.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T2.js index e391337569..af2b92301e 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T2.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toString" has { DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T3.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T3.js index 382fc242ca..31967906d5 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T3.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toString" has { DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A2_T1.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A2_T1.js index a5026ecfd6..7f83dab5dd 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A2_T1.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toString" is 0 esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A2_T1 description: The "length" property of the "toString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T1.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T1.js index fda35e3296..d1df257782 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T1.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T2.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T2.js index 3bc1f906c6..0551afa3d1 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T2.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T3.js b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T3.js index 0c4a7fe58a..aeecee5f9a 100644 --- a/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T3.js +++ b/test/built-ins/Date/prototype/toString/S15.9.5.2_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.tostring -es5id: 15.9.5.2_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toString/name.js b/test/built-ins/Date/prototype/toString/name.js index 63993649bb..fd9838ef68 100644 --- a/test/built-ins/Date/prototype/toString/name.js +++ b/test/built-ins/Date/prototype/toString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.tostring -es6id: 20.3.4.41 description: > Date.prototype.toString.name is "toString". info: | diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T1.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T1.js index 9ca9f0008e..b922df5cd1 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T1.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toTimeString" has { DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T2.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T2.js index 0b0ecf006b..535c5317c6 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T2.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toTimeString" has { DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T3.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T3.js index 6d4babc06d..9e7dd4cdcd 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T3.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toTimeString" has { DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js index 880915233b..48bdf2e44d 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toTimeString" is 0 esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A2_T1 description: The "length" property of the "toTimeString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T1.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T1.js index a1fcd07d1c..722e801736 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T1.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toTimeString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T2.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T2.js index 92e4da3235..2d5b8a3756 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T2.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toTimeString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T3.js b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T3.js index 6476bf513c..fe4df026c7 100644 --- a/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T3.js +++ b/test/built-ins/Date/prototype/toTimeString/S15.9.5.4_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toTimeString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.totimestring -es5id: 15.9.5.4_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toTimeString/name.js b/test/built-ins/Date/prototype/toTimeString/name.js index 6b7b147bd2..6c1101b683 100644 --- a/test/built-ins/Date/prototype/toTimeString/name.js +++ b/test/built-ins/Date/prototype/toTimeString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.totimestring -es6id: 20.3.4.42 description: > Date.prototype.toTimeString.name is "toTimeString". info: | diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T1.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T1.js index 3fee728b23..4d709cf892 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T1.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toUTCString" has { DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T2.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T2.js index caca517fce..e235e162e9 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T2.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toUTCString" has { DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T3.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T3.js index 6149d52a9b..a9b1e4f898 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T3.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "toUTCString" has { DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A2_T1.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A2_T1.js index ad2262d325..f0afe6253f 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A2_T1.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "toUTCString" is 0 esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A2_T1 description: The "length" property of the "toUTCString" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T1.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T1.js index 673a763173..5c01cb9682 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T1.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toUTCString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T2.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T2.js index 26cebb299b..38385869d2 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T2.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toUTCString property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T3.js b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T3.js index c3e445fb5b..771520da0e 100644 --- a/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T3.js +++ b/test/built-ins/Date/prototype/toUTCString/S15.9.5.42_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.toUTCString property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.toutcstring -es5id: 15.9.5.42_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/toUTCString/name.js b/test/built-ins/Date/prototype/toUTCString/name.js index df6ac0d15d..c61f625dd4 100644 --- a/test/built-ins/Date/prototype/toUTCString/name.js +++ b/test/built-ins/Date/prototype/toUTCString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.toutcstring -es6id: 20.3.4.43 description: > Date.prototype.toUTCString.name is "toUTCString". info: | diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T1.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T1.js index 9492a8ae85..4561bfae58 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T1.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T1.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "valueOf" has { DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A1_T1 description: Checking absence of ReadOnly attribute ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T2.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T2.js index d6a5b8eb0c..611b44d10c 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T2.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T2.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "valueOf" has { DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A1_T2 description: Checking absence of DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T3.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T3.js index 81f7098e93..12d1aee5ed 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T3.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A1_T3.js @@ -4,7 +4,6 @@ /*--- info: The Date.prototype property "valueOf" has { DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A1_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A2_T1.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A2_T1.js index 8a95d40db6..7748b107db 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A2_T1.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A2_T1.js @@ -4,7 +4,6 @@ /*--- info: The "length" property of the "valueOf" is 0 esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A2_T1 description: The "length" property of the "valueOf" is 0 ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T1.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T1.js index c85e1f616e..f33fa3dbe0 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T1.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T1.js @@ -6,7 +6,6 @@ info: | The Date.prototype.valueOf property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A3_T1 description: Checking ReadOnly attribute includes: [propertyHelper.js] ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T2.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T2.js index 3ad642916b..02e4834c54 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T2.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T2.js @@ -6,7 +6,6 @@ info: | The Date.prototype.valueOf property "length" has { ReadOnly, ! DontDelete, DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A3_T2 description: Checking DontDelete attribute ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T3.js b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T3.js index dfedf8c62d..6539872433 100644 --- a/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T3.js +++ b/test/built-ins/Date/prototype/valueOf/S15.9.5.8_A3_T3.js @@ -6,7 +6,6 @@ info: | The Date.prototype.valueOf property "length" has { ReadOnly, DontDelete, DontEnum } attributes esid: sec-date.prototype.valueof -es5id: 15.9.5.8_A3_T3 description: Checking DontEnum attribute ---*/ diff --git a/test/built-ins/Date/prototype/valueOf/name.js b/test/built-ins/Date/prototype/valueOf/name.js index 7cbb75e857..bc0c7f8b52 100644 --- a/test/built-ins/Date/prototype/valueOf/name.js +++ b/test/built-ins/Date/prototype/valueOf/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-date.prototype.valueof -es6id: 20.3.4.44 description: > Date.prototype.valueOf.name is "valueOf". info: | diff --git a/test/built-ins/Date/subclassing.js b/test/built-ins/Date/subclassing.js index a8e8ae841b..31e6fecd02 100644 --- a/test/built-ins/Date/subclassing.js +++ b/test/built-ins/Date/subclassing.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Error retrieving `Symbol.toPrimitive` method from object value info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Date/value-get-symbol-to-prim-err.js b/test/built-ins/Date/value-get-symbol-to-prim-err.js index 3e014ad405..4bf7aba885 100644 --- a/test/built-ins/Date/value-get-symbol-to-prim-err.js +++ b/test/built-ins/Date/value-get-symbol-to-prim-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: > Behavior when error thrown while accessing `Symbol.toPrimitive` property info: | diff --git a/test/built-ins/Date/value-symbol-to-prim-err.js b/test/built-ins/Date/value-symbol-to-prim-err.js index 8851eeb41d..ead2b0bfd5 100644 --- a/test/built-ins/Date/value-symbol-to-prim-err.js +++ b/test/built-ins/Date/value-symbol-to-prim-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: > Behavior when error thrown by invocation of `Symbol.toPrimitive` method during coercion diff --git a/test/built-ins/Date/value-symbol-to-prim-invocation.js b/test/built-ins/Date/value-symbol-to-prim-invocation.js index 0ca2e1c0b9..7647dc3de0 100644 --- a/test/built-ins/Date/value-symbol-to-prim-invocation.js +++ b/test/built-ins/Date/value-symbol-to-prim-invocation.js @@ -2,7 +2,6 @@ // this code is governed by the bsd license found in the license file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Invocation of `Symbol.toPrimitive` method info: | [...] diff --git a/test/built-ins/Date/value-symbol-to-prim-return-obj.js b/test/built-ins/Date/value-symbol-to-prim-return-obj.js index 457e126aaf..15cb4ba372 100644 --- a/test/built-ins/Date/value-symbol-to-prim-return-obj.js +++ b/test/built-ins/Date/value-symbol-to-prim-return-obj.js @@ -2,7 +2,6 @@ // this code is governed by the bsd license found in the license file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: > Behavior when coercion via `Symbol.toPrimitive` yields an Object info: | diff --git a/test/built-ins/Date/value-symbol-to-prim-return-prim.js b/test/built-ins/Date/value-symbol-to-prim-return-prim.js index 93854684b7..b7bcb56659 100644 --- a/test/built-ins/Date/value-symbol-to-prim-return-prim.js +++ b/test/built-ins/Date/value-symbol-to-prim-return-prim.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: > Behavior when coercion via `Symbol.toPrimitive` yields a primitive value info: | diff --git a/test/built-ins/Date/value-to-primitive-call-err.js b/test/built-ins/Date/value-to-primitive-call-err.js index 8771251d72..db3dbe5cd8 100644 --- a/test/built-ins/Date/value-to-primitive-call-err.js +++ b/test/built-ins/Date/value-to-primitive-call-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Error invoking `Symbol.toPrimitive` method of object value info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Date/value-to-primitive-call.js b/test/built-ins/Date/value-to-primitive-call.js index 0c73dc2322..b4454c9c1c 100644 --- a/test/built-ins/Date/value-to-primitive-call.js +++ b/test/built-ins/Date/value-to-primitive-call.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Invocation of `Symbol.toPrimitive` method of object value info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Date/value-to-primitive-get-meth-err.js b/test/built-ins/Date/value-to-primitive-get-meth-err.js index 85288bc4e2..48c7a73abd 100644 --- a/test/built-ins/Date/value-to-primitive-get-meth-err.js +++ b/test/built-ins/Date/value-to-primitive-get-meth-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Error retrieving `Symbol.toPrimitive` method from object value info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Date/value-to-primitive-result-faulty.js b/test/built-ins/Date/value-to-primitive-result-faulty.js index 3f2ae125c7..7619f28d99 100644 --- a/test/built-ins/Date/value-to-primitive-result-faulty.js +++ b/test/built-ins/Date/value-to-primitive-result-faulty.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Exotic `Symbol.toPrimitive` method returns a non-primitive info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Date/value-to-primitive-result-non-string-prim.js b/test/built-ins/Date/value-to-primitive-result-non-string-prim.js index fd04156b67..ba233e8700 100644 --- a/test/built-ins/Date/value-to-primitive-result-non-string-prim.js +++ b/test/built-ins/Date/value-to-primitive-result-non-string-prim.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: > Exotic `Symbol.toPrimitive` method returns a primitive value other than a string diff --git a/test/built-ins/Date/value-to-primitive-result-string.js b/test/built-ins/Date/value-to-primitive-result-string.js index 1e317cbe6d..81707dbf25 100644 --- a/test/built-ins/Date/value-to-primitive-result-string.js +++ b/test/built-ins/Date/value-to-primitive-result-string.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-date-value -es6id: 20.3.2.2 description: Exotic `Symbol.toPrimitive` method returns a String value info: | 3. If NewTarget is not undefined, then diff --git a/test/built-ins/Error/proto-from-ctor-realm.js b/test/built-ins/Error/proto-from-ctor-realm.js index beda3c2d7b..d5c055bc7f 100644 --- a/test/built-ins/Error/proto-from-ctor-realm.js +++ b/test/built-ins/Error/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-error-message -es6id: 19.5.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Function/call-bind-this-realm-undef.js b/test/built-ins/Function/call-bind-this-realm-undef.js index be80ef3f93..bffad010bd 100644 --- a/test/built-ins/Function/call-bind-this-realm-undef.js +++ b/test/built-ins/Function/call-bind-this-realm-undef.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-call-thisargument-argumentslist -es6id: 9.2.1 description: The "this" value is set to the global This value info: | [...] diff --git a/test/built-ins/Function/call-bind-this-realm-value.js b/test/built-ins/Function/call-bind-this-realm-value.js index 2b1f94347c..013b416f93 100644 --- a/test/built-ins/Function/call-bind-this-realm-value.js +++ b/test/built-ins/Function/call-bind-this-realm-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-call-thisargument-argumentslist -es6id: 9.2.1 description: The "this" value is wrapped in an object using the callee realm info: | [...] diff --git a/test/built-ins/Function/internals/Call/class-ctor-realm.js b/test/built-ins/Function/internals/Call/class-ctor-realm.js index bfbfee4044..e66f7bc111 100644 --- a/test/built-ins/Function/internals/Call/class-ctor-realm.js +++ b/test/built-ins/Function/internals/Call/class-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-call-thisargument-argumentslist -es6id: 9.2.1 description: > Error when invoking a class constructor (honoring the Realm of the current execution context) diff --git a/test/built-ins/Function/internals/Call/class-ctor.js b/test/built-ins/Function/internals/Call/class-ctor.js index fe2f5221fa..e5864c8368 100644 --- a/test/built-ins/Function/internals/Call/class-ctor.js +++ b/test/built-ins/Function/internals/Call/class-ctor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-call-thisargument-argumentslist -es6id: 9.2.1 description: Error when invoking a class constructor info: | [...] diff --git a/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js b/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js index 0099ed9363..33382b166a 100644 --- a/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js +++ b/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: > Error retrieving function realm from revoked Proxy exotic object (honoring the Realm of the current execution context) diff --git a/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js b/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js index 09ec6169b2..26aa87f58b 100644 --- a/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js +++ b/test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: Error retrieving function realm from revoked Proxy exotic object info: | [...] diff --git a/test/built-ins/Function/internals/Construct/derived-return-val-realm.js b/test/built-ins/Function/internals/Construct/derived-return-val-realm.js index 96dc57d808..f6e70b4c98 100644 --- a/test/built-ins/Function/internals/Construct/derived-return-val-realm.js +++ b/test/built-ins/Function/internals/Construct/derived-return-val-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: > Error when derived constructor returns a non-undefined value (honoring the Realm of the current execution context) diff --git a/test/built-ins/Function/internals/Construct/derived-return-val.js b/test/built-ins/Function/internals/Construct/derived-return-val.js index 12c3bce097..687411bdf3 100644 --- a/test/built-ins/Function/internals/Construct/derived-return-val.js +++ b/test/built-ins/Function/internals/Construct/derived-return-val.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: Error when derived constructor returns a non-undefined value info: | [...] diff --git a/test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js b/test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js index 85b440cb21..a7617ecd5d 100644 --- a/test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js +++ b/test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: > Error when derived constructor does not initialize the `this` binding (honoring the Realm of the current execution context) diff --git a/test/built-ins/Function/internals/Construct/derived-this-uninitialized.js b/test/built-ins/Function/internals/Construct/derived-this-uninitialized.js index bfdd5a634b..af0ecc3f64 100644 --- a/test/built-ins/Function/internals/Construct/derived-this-uninitialized.js +++ b/test/built-ins/Function/internals/Construct/derived-this-uninitialized.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget -es6id: 9.2.2 description: > Error when derived constructor does not initialize the `this` binding info: | diff --git a/test/built-ins/Function/proto-from-ctor-realm.js b/test/built-ins/Function/proto-from-ctor-realm.js index 5628f4dd67..190157799c 100644 --- a/test/built-ins/Function/proto-from-ctor-realm.js +++ b/test/built-ins/Function/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-function-p1-p2-pn-body -es6id: 19.2.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Function/prototype/bind/get-fn-realm.js b/test/built-ins/Function/prototype/bind/get-fn-realm.js index 4bdaa88faa..f21b9dd3d0 100644 --- a/test/built-ins/Function/prototype/bind/get-fn-realm.js +++ b/test/built-ins/Function/prototype/bind/get-fn-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-getfunctionrealm -es6id: 7.3.22 description: > The realm of a bound function exotic object is the realm of its target function diff --git a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget-bound.js b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget-bound.js index 465b4664ec..f04d6aeb91 100644 --- a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget-bound.js +++ b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget-bound.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-bound-function-exotic-objects-construct-argumentslist-newtarget -es6id: 9.4.1.2 description: > The NewTarget value is changed to the target function when the bound function object is constructed using Reflect.construct and the "bound target" is diff --git a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget.js b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget.js index b889634db4..adb247d0d8 100644 --- a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget.js +++ b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-boundtarget.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-bound-function-exotic-objects-construct-argumentslist-newtarget -es6id: 9.4.1.2 description: > The NewTarget value is changed to the target function when the bound function object is constructed using Reflect.construct and the "bound target" is diff --git a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-new.js b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-new.js index f183dbf79a..199519e1bf 100644 --- a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-new.js +++ b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-new.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-bound-function-exotic-objects-construct-argumentslist-newtarget -es6id: 9.4.1.2 description: > The NewTarget value is changed to the target function when the bound function object is constructed using the `new` operator diff --git a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-reflect.js b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-reflect.js index 8664a6eea6..a41223749b 100644 --- a/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-reflect.js +++ b/test/built-ins/Function/prototype/bind/instance-construct-newtarget-self-reflect.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-bound-function-exotic-objects-construct-argumentslist-newtarget -es6id: 9.4.1.2 description: > The NewTarget value is changed to the target function when the bound function object is constructed using Reflect.construct and the bound function is diff --git a/test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js b/test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js index 1963de281a..4f4573a4c8 100644 --- a/test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js +++ b/test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-bound-function-exotic-objects-construct-argumentslist-newtarget -es6id: 9.4.1.2 description: Default [[Prototype]] value derived from realm of the constructor info: | [...] diff --git a/test/built-ins/GeneratorFunction/extensibility.js b/test/built-ins/GeneratorFunction/extensibility.js index 4328a904e3..39e5768daa 100644 --- a/test/built-ins/GeneratorFunction/extensibility.js +++ b/test/built-ins/GeneratorFunction/extensibility.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-generatorfunction-constructor -es6id: 25.2.2 description: Object extensibility info: | The value of the [[Extensible]] internal slot of the GeneratorFunction diff --git a/test/built-ins/GeneratorFunction/instance-length.js b/test/built-ins/GeneratorFunction/instance-length.js index 0951a1a2a3..c5f41ab689 100644 --- a/test/built-ins/GeneratorFunction/instance-length.js +++ b/test/built-ins/GeneratorFunction/instance-length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction -es6id: 25.2.1.1 description: Definition of instance `length` property info: | [...] diff --git a/test/built-ins/GeneratorFunction/instance-prototype.js b/test/built-ins/GeneratorFunction/instance-prototype.js index e542b89640..a42356638d 100644 --- a/test/built-ins/GeneratorFunction/instance-prototype.js +++ b/test/built-ins/GeneratorFunction/instance-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction -es6id: 25.2.1.1 description: Definition of instance `prototype` property info: | [...] diff --git a/test/built-ins/GeneratorFunction/instance-yield-expr-in-param.js b/test/built-ins/GeneratorFunction/instance-yield-expr-in-param.js index 419360a88f..317925421d 100644 --- a/test/built-ins/GeneratorFunction/instance-yield-expr-in-param.js +++ b/test/built-ins/GeneratorFunction/instance-yield-expr-in-param.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction -es6id: 25.2.1.1 description: Definition of instance `length` property info: | [...] diff --git a/test/built-ins/GeneratorFunction/length.js b/test/built-ins/GeneratorFunction/length.js index b989303dec..bd1c48f15d 100644 --- a/test/built-ins/GeneratorFunction/length.js +++ b/test/built-ins/GeneratorFunction/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction.length -es6id: 25.2.2.1 description: > This is a data property with a value of 1. This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. diff --git a/test/built-ins/GeneratorFunction/name.js b/test/built-ins/GeneratorFunction/name.js index 2d517748b1..52f19a66dd 100644 --- a/test/built-ins/GeneratorFunction/name.js +++ b/test/built-ins/GeneratorFunction/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-generatorfunction-constructor -es6id: 25.2.2 description: Function "name" property info: | The value of the name property of the GeneratorFunction is diff --git a/test/built-ins/GeneratorFunction/proto-from-ctor-realm.js b/test/built-ins/GeneratorFunction/proto-from-ctor-realm.js index 313fd4baab..6c3c8b8c32 100644 --- a/test/built-ins/GeneratorFunction/proto-from-ctor-realm.js +++ b/test/built-ins/GeneratorFunction/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction -es6id: 25.2.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/GeneratorFunction/prototype/constructor.js b/test/built-ins/GeneratorFunction/prototype/constructor.js index 87cb431844..1388213472 100644 --- a/test/built-ins/GeneratorFunction/prototype/constructor.js +++ b/test/built-ins/GeneratorFunction/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorfunction.prototype.constructor -es6id: 25.2.3.1 description: > `constructor` property of the GeneratorFunction.prototype object info: | diff --git a/test/built-ins/GeneratorFunction/prototype/extensibility.js b/test/built-ins/GeneratorFunction/prototype/extensibility.js index ca9f590996..79558f9f8c 100644 --- a/test/built-ins/GeneratorFunction/prototype/extensibility.js +++ b/test/built-ins/GeneratorFunction/prototype/extensibility.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-generatorfunction-prototype-object -es6id: 25.2.3 description: Object extensibility info: | The initial value of the [[Extensible]] internal slot of the diff --git a/test/built-ins/GeneratorPrototype/next/from-state-executing.js b/test/built-ins/GeneratorPrototype/next/from-state-executing.js index 2a05f8c2f7..5cb3297f3c 100644 --- a/test/built-ins/GeneratorPrototype/next/from-state-executing.js +++ b/test/built-ins/GeneratorPrototype/next/from-state-executing.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorvalidate -es6id: 25.3.3.2 description: > A TypeError should be thrown if the generator is resumed while in the "executing" state and the generator should be marked as "completed" diff --git a/test/built-ins/GeneratorPrototype/next/this-val-not-generator.js b/test/built-ins/GeneratorPrototype/next/this-val-not-generator.js index 25727d062d..6d2c1c2b76 100644 --- a/test/built-ins/GeneratorPrototype/next/this-val-not-generator.js +++ b/test/built-ins/GeneratorPrototype/next/this-val-not-generator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.next -es6id: 25.3.1.2 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the context of `next` does not define the [[GeneratorState]] internal slot. diff --git a/test/built-ins/GeneratorPrototype/next/this-val-not-object.js b/test/built-ins/GeneratorPrototype/next/this-val-not-object.js index c42b5777f0..11ccef9e0a 100644 --- a/test/built-ins/GeneratorPrototype/next/this-val-not-object.js +++ b/test/built-ins/GeneratorPrototype/next/this-val-not-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.next -es6id: 25.3.1.2 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the "this" value of `next` is not an object. diff --git a/test/built-ins/GeneratorPrototype/return/from-state-executing.js b/test/built-ins/GeneratorPrototype/return/from-state-executing.js index 9cf5a78bdf..ae775647fd 100644 --- a/test/built-ins/GeneratorPrototype/return/from-state-executing.js +++ b/test/built-ins/GeneratorPrototype/return/from-state-executing.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorvalidate -es6id: 25.3.3.2 description: > A TypeError should be thrown if the generator is in the "executing" state, and the generator should be marked as "completed" diff --git a/test/built-ins/GeneratorPrototype/return/this-val-not-generator.js b/test/built-ins/GeneratorPrototype/return/this-val-not-generator.js index dd0ff4b332..d757301b05 100644 --- a/test/built-ins/GeneratorPrototype/return/this-val-not-generator.js +++ b/test/built-ins/GeneratorPrototype/return/this-val-not-generator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.return -es6id: 25.3.1.3 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the context of `return` does not define the [[GeneratorState]] internal slot. diff --git a/test/built-ins/GeneratorPrototype/return/this-val-not-object.js b/test/built-ins/GeneratorPrototype/return/this-val-not-object.js index c8431b407c..7869075c1d 100644 --- a/test/built-ins/GeneratorPrototype/return/this-val-not-object.js +++ b/test/built-ins/GeneratorPrototype/return/this-val-not-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.return -es6id: 25.3.1.3 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the "this" value of `return` is not an object. diff --git a/test/built-ins/GeneratorPrototype/throw/from-state-executing.js b/test/built-ins/GeneratorPrototype/throw/from-state-executing.js index 2af2f73ab3..44bcb1a9eb 100644 --- a/test/built-ins/GeneratorPrototype/throw/from-state-executing.js +++ b/test/built-ins/GeneratorPrototype/throw/from-state-executing.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generatorvalidate -es6id: 25.3.3.2 description: > A TypeError should be thrown if the generator is in the "executing" state, and the generator should be marked as "completed" diff --git a/test/built-ins/GeneratorPrototype/throw/this-val-not-generator.js b/test/built-ins/GeneratorPrototype/throw/this-val-not-generator.js index fae6fe7b75..dff6e9d003 100644 --- a/test/built-ins/GeneratorPrototype/throw/this-val-not-generator.js +++ b/test/built-ins/GeneratorPrototype/throw/this-val-not-generator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.throw -es6id: 25.3.1.4 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the context of `throw` does not define the [[GeneratorState]] internal slot. diff --git a/test/built-ins/GeneratorPrototype/throw/this-val-not-object.js b/test/built-ins/GeneratorPrototype/throw/this-val-not-object.js index 8122f2b382..3bf88f6fde 100644 --- a/test/built-ins/GeneratorPrototype/throw/this-val-not-object.js +++ b/test/built-ins/GeneratorPrototype/throw/this-val-not-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-generator.prototype.throw -es6id: 25.3.1.4 description: > A TypeError should be thrown from GeneratorValidate (25.3.3.2) if the "this" value of `throw` is not an object. diff --git a/test/built-ins/JSON/parse/invalid-whitespace.js b/test/built-ins/JSON/parse/invalid-whitespace.js index f1242fd052..67842820ee 100644 --- a/test/built-ins/JSON/parse/invalid-whitespace.js +++ b/test/built-ins/JSON/parse/invalid-whitespace.js @@ -3,7 +3,6 @@ /*--- esid: sec-json.parse -es6id: 24.3.1 es5id: 15.12.1.1-0-7 description: > other category z spaces are not valid JSON whitespace as specified diff --git a/test/built-ins/JSON/parse/name.js b/test/built-ins/JSON/parse/name.js index 46fb88ec93..a58d73f473 100644 --- a/test/built-ins/JSON/parse/name.js +++ b/test/built-ins/JSON/parse/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-json.parse -es6id: 24.3.1 description: > JSON.parse.name is "parse". info: | diff --git a/test/built-ins/JSON/parse/revived-proxy-revoked.js b/test/built-ins/JSON/parse/revived-proxy-revoked.js index 04fd56f69d..cd4b4cbf56 100644 --- a/test/built-ins/JSON/parse/revived-proxy-revoked.js +++ b/test/built-ins/JSON/parse/revived-proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-json.parse -es6id: 24.3.1 description: Behavior when revived value is a revoked Proxy exotic object info: | [...] diff --git a/test/built-ins/JSON/parse/revived-proxy.js b/test/built-ins/JSON/parse/revived-proxy.js index fbcb3aa466..676d1db242 100644 --- a/test/built-ins/JSON/parse/revived-proxy.js +++ b/test/built-ins/JSON/parse/revived-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-json.parse -es6id: 24.3.1 description: Behavior when revived value is a Proxy exotic object info: | [...] diff --git a/test/built-ins/JSON/parse/reviver-array-define-prop-err.js b/test/built-ins/JSON/parse/reviver-array-define-prop-err.js index 4dff8469ef..35cb21efff 100644 --- a/test/built-ins/JSON/parse/reviver-array-define-prop-err.js +++ b/test/built-ins/JSON/parse/reviver-array-define-prop-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from defining array property while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/parse/reviver-array-delete-err.js b/test/built-ins/JSON/parse/reviver-array-delete-err.js index 23f4d8a396..8b7d621e7b 100644 --- a/test/built-ins/JSON/parse/reviver-array-delete-err.js +++ b/test/built-ins/JSON/parse/reviver-array-delete-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from array property deletion while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/parse/reviver-array-length-coerce-err.js b/test/built-ins/JSON/parse/reviver-array-length-coerce-err.js index e69ec59400..a755ffb236 100644 --- a/test/built-ins/JSON/parse/reviver-array-length-coerce-err.js +++ b/test/built-ins/JSON/parse/reviver-array-length-coerce-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: > Abrupt completion from coercing array "length" property to a number value info: | diff --git a/test/built-ins/JSON/parse/reviver-array-length-get-err.js b/test/built-ins/JSON/parse/reviver-array-length-get-err.js index 92104c926d..1b8e713ea5 100644 --- a/test/built-ins/JSON/parse/reviver-array-length-get-err.js +++ b/test/built-ins/JSON/parse/reviver-array-length-get-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: > Abrupt completion from array "length" property access while reviving info: | diff --git a/test/built-ins/JSON/parse/reviver-call-err.js b/test/built-ins/JSON/parse/reviver-call-err.js index d305b3a900..1f7795a694 100644 --- a/test/built-ins/JSON/parse/reviver-call-err.js +++ b/test/built-ins/JSON/parse/reviver-call-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: > Abrupt completion when reviver function returns an abrupt completion info: | diff --git a/test/built-ins/JSON/parse/reviver-get-name-err.js b/test/built-ins/JSON/parse/reviver-get-name-err.js index 5d6d3868c2..6aabaa370b 100644 --- a/test/built-ins/JSON/parse/reviver-get-name-err.js +++ b/test/built-ins/JSON/parse/reviver-get-name-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from "holder" property access while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/parse/reviver-object-define-prop-err.js b/test/built-ins/JSON/parse/reviver-object-define-prop-err.js index d62dbaf894..e25d94d8b3 100644 --- a/test/built-ins/JSON/parse/reviver-object-define-prop-err.js +++ b/test/built-ins/JSON/parse/reviver-object-define-prop-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from defining object property while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/parse/reviver-object-delete-err.js b/test/built-ins/JSON/parse/reviver-object-delete-err.js index edded21fa7..aa2dd95b96 100644 --- a/test/built-ins/JSON/parse/reviver-object-delete-err.js +++ b/test/built-ins/JSON/parse/reviver-object-delete-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from object property deletion while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/parse/reviver-object-own-keys-err.js b/test/built-ins/JSON/parse/reviver-object-own-keys-err.js index d103ad8a36..f9f7e75395 100644 --- a/test/built-ins/JSON/parse/reviver-object-own-keys-err.js +++ b/test/built-ins/JSON/parse/reviver-object-own-keys-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-internalizejsonproperty -es6id: 24.3.1.1 description: Abrupt completion from object property enumeration while reviving info: | JSON.parse ( text [ , reviver ] ) diff --git a/test/built-ins/JSON/stringify/replacer-proxy-revoked.js b/test/built-ins/JSON/stringify/replacer-proxy-revoked.js index de5a0620c8..2014261ab2 100644 --- a/test/built-ins/JSON/stringify/replacer-proxy-revoked.js +++ b/test/built-ins/JSON/stringify/replacer-proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-json.stringify -es6id: 24.3.2 description: Revoked proxy value produces a TypeError info: | [...] diff --git a/test/built-ins/JSON/stringify/replacer-proxy.js b/test/built-ins/JSON/stringify/replacer-proxy.js index 9ac8d5bb5f..2c4819b2ee 100644 --- a/test/built-ins/JSON/stringify/replacer-proxy.js +++ b/test/built-ins/JSON/stringify/replacer-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-json.stringify -es6id: 24.3.2 description: Proxy of an array is treated as an array info: | [...] diff --git a/test/built-ins/JSON/stringify/value-proxy-revoked.js b/test/built-ins/JSON/stringify/value-proxy-revoked.js index 24b34f5dc4..1c7c126573 100644 --- a/test/built-ins/JSON/stringify/value-proxy-revoked.js +++ b/test/built-ins/JSON/stringify/value-proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-json.stringify -es6id: 24.3.2 description: Revoked proxy value produces a TypeError info: | [...] diff --git a/test/built-ins/JSON/stringify/value-proxy.js b/test/built-ins/JSON/stringify/value-proxy.js index 366607adfe..3365fefc58 100644 --- a/test/built-ins/JSON/stringify/value-proxy.js +++ b/test/built-ins/JSON/stringify/value-proxy.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object.prototype.tostring -es6id: 19.1.3.6 description: Proxy of an array is treated as an array info: | [...] diff --git a/test/built-ins/Map/Symbol.species/return-value.js b/test/built-ins/Map/Symbol.species/return-value.js index d50555536a..c64e011e4e 100644 --- a/test/built-ins/Map/Symbol.species/return-value.js +++ b/test/built-ins/Map/Symbol.species/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-map-@@species -es6id: 23.1.2.2 description: Return value of @@species accessor method info: | 1. Return the this value. diff --git a/test/built-ins/Map/Symbol.species/symbol-species.js b/test/built-ins/Map/Symbol.species/symbol-species.js index 187972ae32..2200fc94b2 100644 --- a/test/built-ins/Map/Symbol.species/symbol-species.js +++ b/test/built-ins/Map/Symbol.species/symbol-species.js @@ -5,7 +5,6 @@ info: | Map has a property at `Symbol.species` esid: sec-get-map-@@species -es6id: 23.1.2.2 author: Sam Mikes description: Map[Symbol.species] exists per spec includes: [propertyHelper.js] diff --git a/test/built-ins/Map/proto-from-ctor-realm.js b/test/built-ins/Map/proto-from-ctor-realm.js index 291dec6fc8..a1b92dcbb4 100644 --- a/test/built-ins/Map/proto-from-ctor-realm.js +++ b/test/built-ins/Map/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-map-iterable -es6id: 23.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Math/E/value.js b/test/built-ins/Math/E/value.js index c72f68bc0c..29ed4d4ad1 100644 --- a/test/built-ins/Math/E/value.js +++ b/test/built-ins/Math/E/value.js @@ -3,7 +3,6 @@ /*--- description: Math.E is a numeric value esid: sec-math.e -es6id: 20.2.1.1 info: | The Number value for e, the base of the natural logarithms, which is approximately 2.7182818284590452354. diff --git a/test/built-ins/Math/LN10/value.js b/test/built-ins/Math/LN10/value.js index c48c42e427..ce8b833122 100644 --- a/test/built-ins/Math/LN10/value.js +++ b/test/built-ins/Math/LN10/value.js @@ -3,7 +3,6 @@ /*--- description: Math.LN10 is a numeric value esid: sec-math.ln10 -es6id: 20.2.1.2 info: | The Number value for the natural logarithm of 10, which is approximately 2.302585092994046. diff --git a/test/built-ins/Math/LN2/value.js b/test/built-ins/Math/LN2/value.js index f190c379b3..cadff177e1 100644 --- a/test/built-ins/Math/LN2/value.js +++ b/test/built-ins/Math/LN2/value.js @@ -3,7 +3,6 @@ /*--- description: Math.LN2 is a numeric value esid: sec-math.ln2 -es6id: 20.2.1.3 info: | The Number value for the natural logarithm of 2, which is approximately 0.6931471805599453. diff --git a/test/built-ins/Math/LOG10E/value.js b/test/built-ins/Math/LOG10E/value.js index 0b8858fe10..8efee5a0b5 100644 --- a/test/built-ins/Math/LOG10E/value.js +++ b/test/built-ins/Math/LOG10E/value.js @@ -3,7 +3,6 @@ /*--- description: Math.LOG10E is a numeric value esid: sec-math.log10e -es6id: 20.2.1.4 info: | The Number value for the base-10 logarithm of e, the base of the natural logarithms; this value is approximately 0.4342944819032518. diff --git a/test/built-ins/Math/LOG2E/value.js b/test/built-ins/Math/LOG2E/value.js index 6c0bb164c3..63ee760812 100644 --- a/test/built-ins/Math/LOG2E/value.js +++ b/test/built-ins/Math/LOG2E/value.js @@ -3,7 +3,6 @@ /*--- description: Math.LOG2E is a numeric value esid: sec-math.log2e -es6id: 20.2.1.5 info: | The Number value for the base-2 logarithm of e, the base of the natural logarithms; this value is approximately 1.4426950408889634. diff --git a/test/built-ins/Math/PI/value.js b/test/built-ins/Math/PI/value.js index f574cbc96e..bd834dff8a 100644 --- a/test/built-ins/Math/PI/value.js +++ b/test/built-ins/Math/PI/value.js @@ -3,7 +3,6 @@ /*--- description: Math.PI is a numeric value esid: sec-math.pi -es6id: 20.2.1.6 info: | The Number value for pi, the ratio of the circumference of a circle to its diameter, which is approximately 3.1415926535897932. diff --git a/test/built-ins/Math/SQRT1_2/value.js b/test/built-ins/Math/SQRT1_2/value.js index aba41b250f..5d2d1c46ad 100644 --- a/test/built-ins/Math/SQRT1_2/value.js +++ b/test/built-ins/Math/SQRT1_2/value.js @@ -3,7 +3,6 @@ /*--- description: Math.SQRT1_2 is a numeric value esid: sec-math.sqrt1_2 -es6id: 20.2.1.7 info: | The Number value for the square root of `1/2`, which is approximately 0.7071067811865476. diff --git a/test/built-ins/Math/SQRT2/value.js b/test/built-ins/Math/SQRT2/value.js index bc2dfebf1f..746cbe4d1b 100644 --- a/test/built-ins/Math/SQRT2/value.js +++ b/test/built-ins/Math/SQRT2/value.js @@ -3,7 +3,6 @@ /*--- description: Math.SQRT2 is a numeric value esid: sec-math.sqrt2 -es6id: 20.2.1.8 info: | The Number value for the square root of 2, which is approximately 1.4142135623730951. diff --git a/test/built-ins/Math/abs/absolute-value.js b/test/built-ins/Math/abs/absolute-value.js index daca3aef32..1484a5f20f 100644 --- a/test/built-ins/Math/abs/absolute-value.js +++ b/test/built-ins/Math/abs/absolute-value.js @@ -3,7 +3,6 @@ /*--- esid: sec-math.abs -es6id: 20.2.2.1 description: > Returns the absolute value of x info: | diff --git a/test/built-ins/Math/acosh/arg-is-infinity.js b/test/built-ins/Math/acosh/arg-is-infinity.js index 259324d913..d0ad902465 100644 --- a/test/built-ins/Math/acosh/arg-is-infinity.js +++ b/test/built-ins/Math/acosh/arg-is-infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.3 esid: sec-math.acosh description: > Return Infinity if x is Infinity diff --git a/test/built-ins/Math/clz32/infinity.js b/test/built-ins/Math/clz32/infinity.js index 94b17745c1..306d04b1f9 100644 --- a/test/built-ins/Math/clz32/infinity.js +++ b/test/built-ins/Math/clz32/infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.11 esid: sec-math.clz32 description: > Return 32 if x is Infinity or -Infinity diff --git a/test/built-ins/Math/clz32/int32bit.js b/test/built-ins/Math/clz32/int32bit.js index c5f9489531..0c49b83d92 100644 --- a/test/built-ins/Math/clz32/int32bit.js +++ b/test/built-ins/Math/clz32/int32bit.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.11 esid: sec-math.clz32 description: > Catches the int32bit value in the ToUint32 operation diff --git a/test/built-ins/Math/clz32/nan.js b/test/built-ins/Math/clz32/nan.js index cd8a9c98f2..c78508aa7f 100644 --- a/test/built-ins/Math/clz32/nan.js +++ b/test/built-ins/Math/clz32/nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.11 esid: sec-math.clz32 description: > Return 32 if x is NaN diff --git a/test/built-ins/Math/fround/value-convertion.js b/test/built-ins/Math/fround/value-convertion.js index 05340553ca..98f4d93c1f 100644 --- a/test/built-ins/Math/fround/value-convertion.js +++ b/test/built-ins/Math/fround/value-convertion.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.17 esid: sec-math.fround description: > Convert to binary32 format and than to binary64 format diff --git a/test/built-ins/Math/imul/results.js b/test/built-ins/Math/imul/results.js index f32bd082ee..e8a37865fc 100644 --- a/test/built-ins/Math/imul/results.js +++ b/test/built-ins/Math/imul/results.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.19 esid: sec-math.imul description: > Return results diff --git a/test/built-ins/Math/log1p/specific-results.js b/test/built-ins/Math/log1p/specific-results.js index 6a35fb85c0..f6cc408cf6 100644 --- a/test/built-ins/Math/log1p/specific-results.js +++ b/test/built-ins/Math/log1p/specific-results.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2.2.21 esid: sec-math.log1p description: > Return specific results diff --git a/test/built-ins/Math/max/zeros.js b/test/built-ins/Math/max/zeros.js index 8be2cf7f60..b98c2d65ae 100644 --- a/test/built-ins/Math/max/zeros.js +++ b/test/built-ins/Math/max/zeros.js @@ -3,7 +3,6 @@ /*--- esid: sec-math.max -es6id: 20.2.2.24 description: > +0 is considered to be larger than -0 info: | diff --git a/test/built-ins/Math/min/zeros.js b/test/built-ins/Math/min/zeros.js index 4889fdff94..5ada43c0fb 100644 --- a/test/built-ins/Math/min/zeros.js +++ b/test/built-ins/Math/min/zeros.js @@ -3,7 +3,6 @@ /*--- esid: sec-math.min -es6id: 20.2.2.25 description: > +0 is considered to be larger than -0 info: | diff --git a/test/built-ins/Math/proto.js b/test/built-ins/Math/proto.js index b2047814f1..cf71a0227b 100644 --- a/test/built-ins/Math/proto.js +++ b/test/built-ins/Math/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.2 esid: sec-math-object description: > The prototype of Math is Object.prototype diff --git a/test/built-ins/Number/EPSILON.js b/test/built-ins/Number/EPSILON.js index 2967bc197b..1eb06cbdbf 100644 --- a/test/built-ins/Number/EPSILON.js +++ b/test/built-ins/Number/EPSILON.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.1 esid: sec-number.epsilon description: > "EPSILON" property of Number diff --git a/test/built-ins/Number/MAX_SAFE_INTEGER.js b/test/built-ins/Number/MAX_SAFE_INTEGER.js index 01b132bb07..7668e6c60a 100644 --- a/test/built-ins/Number/MAX_SAFE_INTEGER.js +++ b/test/built-ins/Number/MAX_SAFE_INTEGER.js @@ -3,7 +3,6 @@ /*--- description: Property descriptor for `Number.MAX_SAFE_INTEGER` esid: sec-number.max_safe_integer -es6id: 20.1.2.6 info: | The value of Number.MAX_SAFE_INTEGER is 9007199254740991 diff --git a/test/built-ins/Number/MIN_SAFE_INTEGER.js b/test/built-ins/Number/MIN_SAFE_INTEGER.js index 613ce9995b..a90b8056e4 100644 --- a/test/built-ins/Number/MIN_SAFE_INTEGER.js +++ b/test/built-ins/Number/MIN_SAFE_INTEGER.js @@ -3,7 +3,6 @@ /*--- description: Property descriptor for `Number.MIN_SAFE_INTEGER` esid: sec-number.min_safe_integer -es6id: 20.1.2.8 info: | The value of Number.MIN_SAFE_INTEGER is −9007199254740991 diff --git a/test/built-ins/Number/NEGATIVE_INFINITY/prop-desc.js b/test/built-ins/Number/NEGATIVE_INFINITY/prop-desc.js index 91d5dfb506..47592d2181 100644 --- a/test/built-ins/Number/NEGATIVE_INFINITY/prop-desc.js +++ b/test/built-ins/Number/NEGATIVE_INFINITY/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.11 esid: sec-number.negative_infinity description: > "NEGATIVE_INFINITY" property of Number diff --git a/test/built-ins/Number/NEGATIVE_INFINITY/value.js b/test/built-ins/Number/NEGATIVE_INFINITY/value.js index a6bef12865..a7f0b65fec 100644 --- a/test/built-ins/Number/NEGATIVE_INFINITY/value.js +++ b/test/built-ins/Number/NEGATIVE_INFINITY/value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.11 esid: sec-number.negative_infinity description: > The value of Number.NEGATIVE_INFINITY is -Infinity diff --git a/test/built-ins/Number/NaN.js b/test/built-ins/Number/NaN.js index 4c484afdf9..82016ea52c 100644 --- a/test/built-ins/Number/NaN.js +++ b/test/built-ins/Number/NaN.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.10 esid: sec-number.nan description: > "NaN" property descriptor and value of Number diff --git a/test/built-ins/Number/POSITIVE_INFINITY/prop-desc.js b/test/built-ins/Number/POSITIVE_INFINITY/prop-desc.js index 0e0212d322..0cc42dbf93 100644 --- a/test/built-ins/Number/POSITIVE_INFINITY/prop-desc.js +++ b/test/built-ins/Number/POSITIVE_INFINITY/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.14 esid: sec-number.positive_infinity description: > "POSITIVE_INFINITY" property of Number diff --git a/test/built-ins/Number/POSITIVE_INFINITY/value.js b/test/built-ins/Number/POSITIVE_INFINITY/value.js index f4bdb37d71..96d2c2da76 100644 --- a/test/built-ins/Number/POSITIVE_INFINITY/value.js +++ b/test/built-ins/Number/POSITIVE_INFINITY/value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.14 esid: sec-number.positive_infinity description: > The value of Number.POSITIVE_INFINITY is +Infinity diff --git a/test/built-ins/Number/isFinite/arg-is-not-number.js b/test/built-ins/Number/isFinite/arg-is-not-number.js index f48ebd26be..c95f659905 100644 --- a/test/built-ins/Number/isFinite/arg-is-not-number.js +++ b/test/built-ins/Number/isFinite/arg-is-not-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.2 esid: sec-number.isfinite description: > Return false if argument is not Number diff --git a/test/built-ins/Number/isFinite/finite-numbers.js b/test/built-ins/Number/isFinite/finite-numbers.js index 5731eaf25e..34484ccf06 100644 --- a/test/built-ins/Number/isFinite/finite-numbers.js +++ b/test/built-ins/Number/isFinite/finite-numbers.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.2 esid: sec-number.isfinite description: > Return true for valid finite numbers diff --git a/test/built-ins/Number/isFinite/infinity.js b/test/built-ins/Number/isFinite/infinity.js index 18c869791a..1071371d82 100644 --- a/test/built-ins/Number/isFinite/infinity.js +++ b/test/built-ins/Number/isFinite/infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.2 esid: sec-number.isfinite description: > Return false if argument is Infinity or -Infinity diff --git a/test/built-ins/Number/isFinite/nan.js b/test/built-ins/Number/isFinite/nan.js index 8dc1831a42..3372373b3e 100644 --- a/test/built-ins/Number/isFinite/nan.js +++ b/test/built-ins/Number/isFinite/nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.2 esid: sec-number.isfinite description: > Return false if argument is NaN diff --git a/test/built-ins/Number/isFinite/prop-desc.js b/test/built-ins/Number/isFinite/prop-desc.js index 108e4a6f54..e6a4876db6 100644 --- a/test/built-ins/Number/isFinite/prop-desc.js +++ b/test/built-ins/Number/isFinite/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.2 esid: sec-number.isfinite description: > "isFinite" property of Number diff --git a/test/built-ins/Number/isInteger/arg-is-not-number.js b/test/built-ins/Number/isInteger/arg-is-not-number.js index 81614c2396..bdab536f28 100644 --- a/test/built-ins/Number/isInteger/arg-is-not-number.js +++ b/test/built-ins/Number/isInteger/arg-is-not-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.3 esid: sec-number.isinteger description: > Return false if argument is not Number diff --git a/test/built-ins/Number/isInteger/prop-desc.js b/test/built-ins/Number/isInteger/prop-desc.js index b99e9cc252..af1b7c22f1 100644 --- a/test/built-ins/Number/isInteger/prop-desc.js +++ b/test/built-ins/Number/isInteger/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.3 esid: sec-number.isinteger description: > "isInteger" property of Number diff --git a/test/built-ins/Number/isNaN/arg-is-not-number.js b/test/built-ins/Number/isNaN/arg-is-not-number.js index a97c97d3f0..9d76960888 100644 --- a/test/built-ins/Number/isNaN/arg-is-not-number.js +++ b/test/built-ins/Number/isNaN/arg-is-not-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.4 esid: sec-number.isnan description: > Return false if argument is not Number diff --git a/test/built-ins/Number/isNaN/not-nan.js b/test/built-ins/Number/isNaN/not-nan.js index 4be5d39116..c02c6bd106 100644 --- a/test/built-ins/Number/isNaN/not-nan.js +++ b/test/built-ins/Number/isNaN/not-nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.4 esid: sec-number.isnan description: > Return false if argument is not NaN diff --git a/test/built-ins/Number/isNaN/prop-desc.js b/test/built-ins/Number/isNaN/prop-desc.js index 91ecf371a1..b1d8bac787 100644 --- a/test/built-ins/Number/isNaN/prop-desc.js +++ b/test/built-ins/Number/isNaN/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.4 esid: sec-number.isnan description: > "isNaN" property of Number diff --git a/test/built-ins/Number/isSafeInteger/arg-is-not-number.js b/test/built-ins/Number/isSafeInteger/arg-is-not-number.js index 40815ef9ed..1ebfad97a9 100644 --- a/test/built-ins/Number/isSafeInteger/arg-is-not-number.js +++ b/test/built-ins/Number/isSafeInteger/arg-is-not-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return false if argument is not Number diff --git a/test/built-ins/Number/isSafeInteger/infinity.js b/test/built-ins/Number/isSafeInteger/infinity.js index 141f2c6690..4558e297fd 100644 --- a/test/built-ins/Number/isSafeInteger/infinity.js +++ b/test/built-ins/Number/isSafeInteger/infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return false if argument is an Infinity value diff --git a/test/built-ins/Number/isSafeInteger/nan.js b/test/built-ins/Number/isSafeInteger/nan.js index 5e1cb1291e..495adf9afe 100644 --- a/test/built-ins/Number/isSafeInteger/nan.js +++ b/test/built-ins/Number/isSafeInteger/nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return false if argument is NaN diff --git a/test/built-ins/Number/isSafeInteger/not-integer.js b/test/built-ins/Number/isSafeInteger/not-integer.js index c72186020e..8ea20bf068 100644 --- a/test/built-ins/Number/isSafeInteger/not-integer.js +++ b/test/built-ins/Number/isSafeInteger/not-integer.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return false if argument is not an integer diff --git a/test/built-ins/Number/isSafeInteger/not-safe-integer.js b/test/built-ins/Number/isSafeInteger/not-safe-integer.js index 46a12b479e..99305c8a3f 100644 --- a/test/built-ins/Number/isSafeInteger/not-safe-integer.js +++ b/test/built-ins/Number/isSafeInteger/not-safe-integer.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return false if argument is not a safe integer diff --git a/test/built-ins/Number/isSafeInteger/prop-desc.js b/test/built-ins/Number/isSafeInteger/prop-desc.js index bfe9d23861..97e829f104 100644 --- a/test/built-ins/Number/isSafeInteger/prop-desc.js +++ b/test/built-ins/Number/isSafeInteger/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > "isSafeInteger" property of Number diff --git a/test/built-ins/Number/isSafeInteger/safe-integers.js b/test/built-ins/Number/isSafeInteger/safe-integers.js index 3b73e76c49..6dc2b6488a 100644 --- a/test/built-ins/Number/isSafeInteger/safe-integers.js +++ b/test/built-ins/Number/isSafeInteger/safe-integers.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.5 esid: sec-number.issafeinteger description: > Return true if argument is a safe integer diff --git a/test/built-ins/Number/parseFloat.js b/test/built-ins/Number/parseFloat.js index 6ff1457412..aa3f5b38d8 100644 --- a/test/built-ins/Number/parseFloat.js +++ b/test/built-ins/Number/parseFloat.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.12 esid: sec-number.parsefloat description: > "parseFloat" property descriptor and value of Number diff --git a/test/built-ins/Number/parseInt.js b/test/built-ins/Number/parseInt.js index 1efe0d0a36..fe920e204a 100644 --- a/test/built-ins/Number/parseInt.js +++ b/test/built-ins/Number/parseInt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.13 esid: sec-number.parseint description: > "parseInt" property descriptor and value of Number diff --git a/test/built-ins/Number/prop-desc.js b/test/built-ins/Number/prop-desc.js index 2c361d0b81..bffbb3ed85 100644 --- a/test/built-ins/Number/prop-desc.js +++ b/test/built-ins/Number/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.1.1 esid: sec-number-constructor-number-value description: > Property descriptor of Number diff --git a/test/built-ins/Number/proto-from-ctor-realm.js b/test/built-ins/Number/proto-from-ctor-realm.js index a1a8729c9c..2501f2ee9e 100644 --- a/test/built-ins/Number/proto-from-ctor-realm.js +++ b/test/built-ins/Number/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-number-constructor-number-value -es6id: 20.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Number/prototype/constructor.js b/test/built-ins/Number/prototype/constructor.js index b2f6d5acfb..cc53a0c2ac 100644 --- a/test/built-ins/Number/prototype/constructor.js +++ b/test/built-ins/Number/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.1 esid: sec-number.prototype.constructor description: > Property descriptor and value for Number.prototype.constructor diff --git a/test/built-ins/Number/prototype/prop-desc.js b/test/built-ins/Number/prototype/prop-desc.js index 34557e3a53..e508e213cc 100644 --- a/test/built-ins/Number/prototype/prop-desc.js +++ b/test/built-ins/Number/prototype/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.2.15 esid: sec-number.prototype description: > "prototype" property of Number diff --git a/test/built-ins/Number/prototype/toExponential/infinity.js b/test/built-ins/Number/prototype/toExponential/infinity.js index 7fc2ca9b64..36bc8ce002 100644 --- a/test/built-ins/Number/prototype/toExponential/infinity.js +++ b/test/built-ins/Number/prototype/toExponential/infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return signed Infinity string if this is Infinity diff --git a/test/built-ins/Number/prototype/toExponential/nan.js b/test/built-ins/Number/prototype/toExponential/nan.js index 9d3a953f24..79188d72b6 100644 --- a/test/built-ins/Number/prototype/toExponential/nan.js +++ b/test/built-ins/Number/prototype/toExponential/nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return "NaN" if this is NaN diff --git a/test/built-ins/Number/prototype/toExponential/prop-desc.js b/test/built-ins/Number/prototype/toExponential/prop-desc.js index 2c21c82b15..aea38e515c 100644 --- a/test/built-ins/Number/prototype/toExponential/prop-desc.js +++ b/test/built-ins/Number/prototype/toExponential/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > "toExponential" property of Number.prototype diff --git a/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits-symbol.js b/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits-symbol.js index a875087955..6b4363a8d0 100644 --- a/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits-symbol.js +++ b/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return abrupt completion from ToInteger(symbol fractionDigits) diff --git a/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits.js b/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits.js index f2737d902f..5a429872aa 100644 --- a/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits.js +++ b/test/built-ins/Number/prototype/toExponential/return-abrupt-tointeger-fractiondigits.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return abrupt completion from ToInteger(fractionDigits) diff --git a/test/built-ins/Number/prototype/toExponential/return-values.js b/test/built-ins/Number/prototype/toExponential/return-values.js index 7b72fe6ef4..43388864e6 100644 --- a/test/built-ins/Number/prototype/toExponential/return-values.js +++ b/test/built-ins/Number/prototype/toExponential/return-values.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return regular string values diff --git a/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-0.js b/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-0.js index 6452344f62..39aaf6d6e6 100644 --- a/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-0.js +++ b/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-0.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return "0" if this value is 0 and ToInteger(fractionDigits) is 0 diff --git a/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-not-0.js b/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-not-0.js index 0102769894..490e1de3f6 100644 --- a/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-not-0.js +++ b/test/built-ins/Number/prototype/toExponential/this-is-0-fractiondigits-is-not-0.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Return string value for this value = 0 and fractionDigits != 0 diff --git a/test/built-ins/Number/prototype/toExponential/this-type-not-number-or-number-object.js b/test/built-ins/Number/prototype/toExponential/this-type-not-number-or-number-object.js index 5d91fd1b74..86dbafeb2c 100644 --- a/test/built-ins/Number/prototype/toExponential/this-type-not-number-or-number-object.js +++ b/test/built-ins/Number/prototype/toExponential/this-type-not-number-or-number-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Throws a TypeError if this value is not a number object or value diff --git a/test/built-ins/Number/prototype/toExponential/tointeger-fractiondigits.js b/test/built-ins/Number/prototype/toExponential/tointeger-fractiondigits.js index 15204dd593..c90ca40895 100644 --- a/test/built-ins/Number/prototype/toExponential/tointeger-fractiondigits.js +++ b/test/built-ins/Number/prototype/toExponential/tointeger-fractiondigits.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > ToInteger(fractionDigits operations) diff --git a/test/built-ins/Number/prototype/toExponential/undefined-fractiondigits.js b/test/built-ins/Number/prototype/toExponential/undefined-fractiondigits.js index ddb800bed8..1a70500b1b 100644 --- a/test/built-ins/Number/prototype/toExponential/undefined-fractiondigits.js +++ b/test/built-ins/Number/prototype/toExponential/undefined-fractiondigits.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.2 esid: sec-number.prototype.toexponential description: > Handle undefined fractionDigits, not only casting it to 0 diff --git a/test/built-ins/Number/prototype/toFixed/length.js b/test/built-ins/Number/prototype/toFixed/length.js index 07f52b9a50..f5f9745ede 100644 --- a/test/built-ins/Number/prototype/toFixed/length.js +++ b/test/built-ins/Number/prototype/toFixed/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-number.prototype.tofixed -es6id: 20.1.3.3 description: > Number.prototype.toFixed.length is 1. info: | diff --git a/test/built-ins/Number/prototype/toFixed/prop-desc.js b/test/built-ins/Number/prototype/toFixed/prop-desc.js index 9f310406ab..151eb452b9 100644 --- a/test/built-ins/Number/prototype/toFixed/prop-desc.js +++ b/test/built-ins/Number/prototype/toFixed/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.3 esid: sec-number.prototype.tofixed description: > "toFixed" property of Number.prototype diff --git a/test/built-ins/Number/prototype/toLocaleString/prop-desc.js b/test/built-ins/Number/prototype/toLocaleString/prop-desc.js index bdff668351..f495e39bec 100644 --- a/test/built-ins/Number/prototype/toLocaleString/prop-desc.js +++ b/test/built-ins/Number/prototype/toLocaleString/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.4 esid: sec-number.prototype.tolocalestring description: > "toLocaleString" property of Number.prototype diff --git a/test/built-ins/Number/prototype/toPrecision/exponential.js b/test/built-ins/Number/prototype/toPrecision/exponential.js index 8e055a2ead..af862199aa 100644 --- a/test/built-ins/Number/prototype/toPrecision/exponential.js +++ b/test/built-ins/Number/prototype/toPrecision/exponential.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return string values using exponential character diff --git a/test/built-ins/Number/prototype/toPrecision/infinity.js b/test/built-ins/Number/prototype/toPrecision/infinity.js index 1b5adc86ee..7c707d6519 100644 --- a/test/built-ins/Number/prototype/toPrecision/infinity.js +++ b/test/built-ins/Number/prototype/toPrecision/infinity.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return "NaN" if this is NaN diff --git a/test/built-ins/Number/prototype/toPrecision/nan.js b/test/built-ins/Number/prototype/toPrecision/nan.js index d1de9c35cb..592b214c29 100644 --- a/test/built-ins/Number/prototype/toPrecision/nan.js +++ b/test/built-ins/Number/prototype/toPrecision/nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return "NaN" if this is NaN diff --git a/test/built-ins/Number/prototype/toPrecision/prop-desc.js b/test/built-ins/Number/prototype/toPrecision/prop-desc.js index c666d4eba4..b7421c1982 100644 --- a/test/built-ins/Number/prototype/toPrecision/prop-desc.js +++ b/test/built-ins/Number/prototype/toPrecision/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > "toPrecision" property of Number.prototype diff --git a/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision-symbol.js b/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision-symbol.js index 6b10974c5a..3edd6dbae9 100644 --- a/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision-symbol.js +++ b/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return abrupt completion from ToInteger(symbol precision) diff --git a/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision.js b/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision.js index a94a428439..8445dbf7c8 100644 --- a/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision.js +++ b/test/built-ins/Number/prototype/toPrecision/return-abrupt-tointeger-precision.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return abrupt completion from ToInteger(precision) diff --git a/test/built-ins/Number/prototype/toPrecision/return-values.js b/test/built-ins/Number/prototype/toPrecision/return-values.js index 35c3165ade..a71fe8adc8 100644 --- a/test/built-ins/Number/prototype/toPrecision/return-values.js +++ b/test/built-ins/Number/prototype/toPrecision/return-values.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return regular string values diff --git a/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-1.js b/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-1.js index bdf695a3c8..74edcaa328 100644 --- a/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-1.js +++ b/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-1.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return "0" if this value is 0 and precision is 1 diff --git a/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-gter-than-1.js b/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-gter-than-1.js index 3fa8c19445..bf4a0e3f73 100644 --- a/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-gter-than-1.js +++ b/test/built-ins/Number/prototype/toPrecision/this-is-0-precision-is-gter-than-1.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return string value for this value = 0 and precision is > 1 diff --git a/test/built-ins/Number/prototype/toPrecision/this-type-not-number-or-number-object.js b/test/built-ins/Number/prototype/toPrecision/this-type-not-number-or-number-object.js index 80bc7ed978..775ba73975 100644 --- a/test/built-ins/Number/prototype/toPrecision/this-type-not-number-or-number-object.js +++ b/test/built-ins/Number/prototype/toPrecision/this-type-not-number-or-number-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Throws a TypeError if this value is not a number object or value diff --git a/test/built-ins/Number/prototype/toPrecision/tointeger-precision.js b/test/built-ins/Number/prototype/toPrecision/tointeger-precision.js index ef860acf26..478643d1ff 100644 --- a/test/built-ins/Number/prototype/toPrecision/tointeger-precision.js +++ b/test/built-ins/Number/prototype/toPrecision/tointeger-precision.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > ToInteger(precision) operations diff --git a/test/built-ins/Number/prototype/toPrecision/undefined-precision-arg.js b/test/built-ins/Number/prototype/toPrecision/undefined-precision-arg.js index f45650a381..e6a3648f29 100644 --- a/test/built-ins/Number/prototype/toPrecision/undefined-precision-arg.js +++ b/test/built-ins/Number/prototype/toPrecision/undefined-precision-arg.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.5 esid: sec-number.prototype.toprecision description: > Return a string containing the the number value of this if precision is diff --git a/test/built-ins/Number/prototype/toString/prop-desc.js b/test/built-ins/Number/prototype/toString/prop-desc.js index daa1225aa5..0c0f7f5b1c 100644 --- a/test/built-ins/Number/prototype/toString/prop-desc.js +++ b/test/built-ins/Number/prototype/toString/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.6 esid: sec-number.prototype.tostring description: > "toString" property of Number.prototype diff --git a/test/built-ins/Number/prototype/valueOf/prop-desc.js b/test/built-ins/Number/prototype/valueOf/prop-desc.js index 384e569196..36e0dd5b9f 100644 --- a/test/built-ins/Number/prototype/valueOf/prop-desc.js +++ b/test/built-ins/Number/prototype/valueOf/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.3.7 esid: sec-number.prototype.valueof description: > "valueOf" property of Number.prototype diff --git a/test/built-ins/Number/return-abrupt-tonumber-value-symbol.js b/test/built-ins/Number/return-abrupt-tonumber-value-symbol.js index 873e2d3b88..949518ce54 100644 --- a/test/built-ins/Number/return-abrupt-tonumber-value-symbol.js +++ b/test/built-ins/Number/return-abrupt-tonumber-value-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.1.1 esid: sec-number-constructor-number-value description: > Return abrupt from ToNumber(value) diff --git a/test/built-ins/Number/return-abrupt-tonumber-value.js b/test/built-ins/Number/return-abrupt-tonumber-value.js index 556ba04eb5..0f77e7b273 100644 --- a/test/built-ins/Number/return-abrupt-tonumber-value.js +++ b/test/built-ins/Number/return-abrupt-tonumber-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 20.1.1.1 esid: sec-number-constructor-number-value description: > Return abrupt from ToNumber(value) diff --git a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js index 22eb267e31..a6a3d0ee27 100644 --- a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js +++ b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-invariants-of-the-essential-internal-methods -es6id: 6.1.7.3 description: > Value of non-writable, non-configurable data property must not change ("arguments" property of a non-strict function) diff --git a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js index 93e2fc7c87..26f23e0099 100644 --- a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js +++ b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-invariants-of-the-essential-internal-methods -es6id: 6.1.7.3 description: > Value of non-writable, non-configurable data property must not change ("caller" property of a non-strict function) diff --git a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-regexp-dollar1.js b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-regexp-dollar1.js index 596c60c2cb..97f7b36b04 100644 --- a/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-regexp-dollar1.js +++ b/test/built-ins/Object/internals/DefineOwnProperty/consistent-value-regexp-dollar1.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-invariants-of-the-essential-internal-methods -es6id: 6.1.7.3 description: > Value of non-writable, non-configurable data property must not change ("$1" property of the RegExp built-in) diff --git a/test/built-ins/Object/internals/DefineOwnProperty/consistent-writable-regexp-dollar1.js b/test/built-ins/Object/internals/DefineOwnProperty/consistent-writable-regexp-dollar1.js index 38ccdcc641..09f88df4a9 100644 --- a/test/built-ins/Object/internals/DefineOwnProperty/consistent-writable-regexp-dollar1.js +++ b/test/built-ins/Object/internals/DefineOwnProperty/consistent-writable-regexp-dollar1.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-invariants-of-the-essential-internal-methods -es6id: 6.1.7.3 description: > A property made non-writable, non-configurable must not be reported as writable ("$1" property of the RegExp built-in) diff --git a/test/built-ins/Object/proto-from-ctor.js b/test/built-ins/Object/proto-from-ctor.js index 387a1d2464..a5e0963841 100644 --- a/test/built-ins/Object/proto-from-ctor.js +++ b/test/built-ins/Object/proto-from-ctor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object-value -es6id: 19.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | 1. If NewTarget is neither undefined nor the active function, then diff --git a/test/built-ins/Object/prototype/toString/proxy-array.js b/test/built-ins/Object/prototype/toString/proxy-array.js index 366607adfe..3365fefc58 100644 --- a/test/built-ins/Object/prototype/toString/proxy-array.js +++ b/test/built-ins/Object/prototype/toString/proxy-array.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object.prototype.tostring -es6id: 19.1.3.6 description: Proxy of an array is treated as an array info: | [...] diff --git a/test/built-ins/Object/prototype/toString/proxy-function.js b/test/built-ins/Object/prototype/toString/proxy-function.js index 3b221a1557..f8b303869e 100644 --- a/test/built-ins/Object/prototype/toString/proxy-function.js +++ b/test/built-ins/Object/prototype/toString/proxy-function.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object.prototype.tostring -es6id: 19.1.3.6 description: Proxy of an function is treated as an function info: | [...] diff --git a/test/built-ins/Object/prototype/toString/proxy-revoked.js b/test/built-ins/Object/prototype/toString/proxy-revoked.js index c5c8512bb9..4851960485 100644 --- a/test/built-ins/Object/prototype/toString/proxy-revoked.js +++ b/test/built-ins/Object/prototype/toString/proxy-revoked.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object.prototype.tostring -es6id: 19.1.3.6 description: Revoked proxy value produces a TypeError info: | [...] diff --git a/test/built-ins/Promise/all/capability-resolve-throws-no-close.js b/test/built-ins/Promise/all/capability-resolve-throws-no-close.js index 4429ae26cc..6a2b8adb51 100644 --- a/test/built-ins/Promise/all/capability-resolve-throws-no-close.js +++ b/test/built-ins/Promise/all/capability-resolve-throws-no-close.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Iterator is not closed when the "resolve" capability returns an abrupt completion. diff --git a/test/built-ins/Promise/all/capability-resolve-throws-reject.js b/test/built-ins/Promise/all/capability-resolve-throws-reject.js index e4260a4cf0..f111167ba6 100644 --- a/test/built-ins/Promise/all/capability-resolve-throws-reject.js +++ b/test/built-ins/Promise/all/capability-resolve-throws-reject.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Promise is rejected when the "resolve" capability returns an abrupt completion. diff --git a/test/built-ins/Promise/all/invoke-resolve-error-close.js b/test/built-ins/Promise/all/invoke-resolve-error-close.js index b46e66d49f..0c49a0a57c 100644 --- a/test/built-ins/Promise/all/invoke-resolve-error-close.js +++ b/test/built-ins/Promise/all/invoke-resolve-error-close.js @@ -5,7 +5,6 @@ description: > Explicit iterator closing in response to error esid: sec-promise.all -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-resolve-error-reject.js b/test/built-ins/Promise/all/invoke-resolve-error-reject.js index c21f205152..987a6fa65a 100644 --- a/test/built-ins/Promise/all/invoke-resolve-error-reject.js +++ b/test/built-ins/Promise/all/invoke-resolve-error-reject.js @@ -4,7 +4,6 @@ /*--- description: Promise rejection in response to error esid: sec-promise.all -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-resolve-get-error-reject.js b/test/built-ins/Promise/all/invoke-resolve-get-error-reject.js index 06e9ae11f4..95456e80b9 100644 --- a/test/built-ins/Promise/all/invoke-resolve-get-error-reject.js +++ b/test/built-ins/Promise/all/invoke-resolve-get-error-reject.js @@ -5,7 +5,6 @@ description: > Error retrieving the constructor's `resolve` method (rejecting promise) esid: sec-performpromiseall -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-then-error-close.js b/test/built-ins/Promise/all/invoke-then-error-close.js index fe683d91ea..72c48f48d3 100644 --- a/test/built-ins/Promise/all/invoke-then-error-close.js +++ b/test/built-ins/Promise/all/invoke-then-error-close.js @@ -4,7 +4,6 @@ description: > Error thrown when invoking the instance's `then` method (closing iterator) esid: sec-performpromiseall -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-then-error-reject.js b/test/built-ins/Promise/all/invoke-then-error-reject.js index c50096946a..15aefd1ec1 100644 --- a/test/built-ins/Promise/all/invoke-then-error-reject.js +++ b/test/built-ins/Promise/all/invoke-then-error-reject.js @@ -5,7 +5,6 @@ description: > Error thrown when invoking the instance's `then` method (rejecting Promise) esid: sec-performpromiseall -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-then-get-error-close.js b/test/built-ins/Promise/all/invoke-then-get-error-close.js index 5023c3d4f3..1a0fe44dfa 100644 --- a/test/built-ins/Promise/all/invoke-then-get-error-close.js +++ b/test/built-ins/Promise/all/invoke-then-get-error-close.js @@ -4,7 +4,6 @@ description: > Error thrown when accesing the instance's `then` method (closing iterator) esid: sec-performpromiseall -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/invoke-then-get-error-reject.js b/test/built-ins/Promise/all/invoke-then-get-error-reject.js index 62cdba244d..3ade5e1ba8 100644 --- a/test/built-ins/Promise/all/invoke-then-get-error-reject.js +++ b/test/built-ins/Promise/all/invoke-then-get-error-reject.js @@ -4,7 +4,6 @@ description: > Error thrown when accessing the instance's `then` method (rejecting Promise) esid: sec-performpromiseall -es6id: 25.4.4.1 info: | 11. Let result be PerformPromiseAll(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/all/iter-next-val-err-no-close.js b/test/built-ins/Promise/all/iter-next-val-err-no-close.js index bd2aed5224..72c4f120af 100644 --- a/test/built-ins/Promise/all/iter-next-val-err-no-close.js +++ b/test/built-ins/Promise/all/iter-next-val-err-no-close.js @@ -3,7 +3,6 @@ /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Error when accessing an iterator result's `value` property (not closing iterator) diff --git a/test/built-ins/Promise/all/iter-next-val-err-reject.js b/test/built-ins/Promise/all/iter-next-val-err-reject.js index 49e1072ab0..eed14da8cf 100644 --- a/test/built-ins/Promise/all/iter-next-val-err-reject.js +++ b/test/built-ins/Promise/all/iter-next-val-err-reject.js @@ -3,7 +3,6 @@ /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Error when accessing an iterator result's `value` property (rejecting promise) diff --git a/test/built-ins/Promise/all/iter-step-err-no-close.js b/test/built-ins/Promise/all/iter-step-err-no-close.js index e288093ac1..d3d46d4a18 100644 --- a/test/built-ins/Promise/all/iter-step-err-no-close.js +++ b/test/built-ins/Promise/all/iter-step-err-no-close.js @@ -3,7 +3,6 @@ /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Error when advancing the provided iterable (not closing iterator) info: | diff --git a/test/built-ins/Promise/all/iter-step-err-reject.js b/test/built-ins/Promise/all/iter-step-err-reject.js index 4396343bf4..eb5e0bfe3e 100644 --- a/test/built-ins/Promise/all/iter-step-err-reject.js +++ b/test/built-ins/Promise/all/iter-step-err-reject.js @@ -3,7 +3,6 @@ /*--- esid: sec-promise.all -es6id: 25.4.4.1 description: > Error when advancing the provided iterable (rejecting promise) info: | diff --git a/test/built-ins/Promise/proto-from-ctor-realm.js b/test/built-ins/Promise/proto-from-ctor-realm.js index d2eedddd24..21bb35d68c 100644 --- a/test/built-ins/Promise/proto-from-ctor-realm.js +++ b/test/built-ins/Promise/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise-executor -es6id: 25.4.3.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/Promise/prototype/catch/this-value-non-object.js b/test/built-ins/Promise/prototype/catch/this-value-non-object.js index 1849e9d716..e07e9967f7 100644 --- a/test/built-ins/Promise/prototype/catch/this-value-non-object.js +++ b/test/built-ins/Promise/prototype/catch/this-value-non-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype.catch -es6id: 25.4.5.1 description: > Promise.prototype.catch called with a non-object-coercible `this` value info: | diff --git a/test/built-ins/Promise/prototype/catch/this-value-obj-coercible.js b/test/built-ins/Promise/prototype/catch/this-value-obj-coercible.js index 70f9f418a9..7951d69f5a 100644 --- a/test/built-ins/Promise/prototype/catch/this-value-obj-coercible.js +++ b/test/built-ins/Promise/prototype/catch/this-value-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype.catch -es6id: 25.4.5.1 description: > Promise.prototype.catch called with an object-coercible `this` value info: | diff --git a/test/built-ins/Promise/prototype/catch/this-value-then-not-callable.js b/test/built-ins/Promise/prototype/catch/this-value-then-not-callable.js index 20c29cfe62..05eb43322f 100644 --- a/test/built-ins/Promise/prototype/catch/this-value-then-not-callable.js +++ b/test/built-ins/Promise/prototype/catch/this-value-then-not-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype.catch -es6id: 25.4.5.1 description: > Promise.prototype.catch called with a `this` value that does not define a callable `this` property diff --git a/test/built-ins/Promise/prototype/catch/this-value-then-poisoned.js b/test/built-ins/Promise/prototype/catch/this-value-then-poisoned.js index 4b53ca82e8..1f129dfb9c 100644 --- a/test/built-ins/Promise/prototype/catch/this-value-then-poisoned.js +++ b/test/built-ins/Promise/prototype/catch/this-value-then-poisoned.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype.catch -es6id: 25.4.5.1 description: > Promise.prototype.catch called with a `this` value whose `then` property is an accessor property that returns an abrupt completion diff --git a/test/built-ins/Promise/prototype/catch/this-value-then-throws.js b/test/built-ins/Promise/prototype/catch/this-value-then-throws.js index e5c5cf9361..9a24d6fcd8 100644 --- a/test/built-ins/Promise/prototype/catch/this-value-then-throws.js +++ b/test/built-ins/Promise/prototype/catch/this-value-then-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype.catch -es6id: 25.4.5.1 description: > Promise.prototype.catch called with a `this` value that defines a `then` method which returns an abrupt completion. diff --git a/test/built-ins/Promise/prototype/no-promise-state.js b/test/built-ins/Promise/prototype/no-promise-state.js index a38f324044..9493edda04 100644 --- a/test/built-ins/Promise/prototype/no-promise-state.js +++ b/test/built-ins/Promise/prototype/no-promise-state.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-promise-prototype-object -es6id: 25.4.5 description: Promise.prototype does not have a [[PromiseState]] internal slot info: | The Promise prototype object is the intrinsic object %PromisePrototype%. The diff --git a/test/built-ins/Promise/prototype/prop-desc.js b/test/built-ins/Promise/prototype/prop-desc.js index 3b8452ccd1..84480ce9a6 100644 --- a/test/built-ins/Promise/prototype/prop-desc.js +++ b/test/built-ins/Promise/prototype/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-promise.prototype -es6id: 25.4.4.2 description: Property descriptor of 'prototype' property info: | This property has the attributes { [[Writable]]: false, [[Enumerable]]: diff --git a/test/built-ins/Promise/prototype/proto.js b/test/built-ins/Promise/prototype/proto.js index e6bc1c727a..a59401c847 100644 --- a/test/built-ins/Promise/prototype/proto.js +++ b/test/built-ins/Promise/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-promise-prototype-object -es6id: 25.4.5 description: Promise.prototype [[Prototype]] is %ObjectPrototype% info: | The Promise prototype object is the intrinsic object %PromisePrototype%. The diff --git a/test/built-ins/Promise/race/invoke-resolve-error-close.js b/test/built-ins/Promise/race/invoke-resolve-error-close.js index df90989cb4..a534a7722d 100644 --- a/test/built-ins/Promise/race/invoke-resolve-error-close.js +++ b/test/built-ins/Promise/race/invoke-resolve-error-close.js @@ -5,7 +5,6 @@ description: > Explicit iterator closing in response to error from `Promise.resolve` esid: sec-promise.race -es6id: 25.4.4.3 info: | [...] 11. Let result be PerformPromiseRace(iteratorRecord, promiseCapability, C). diff --git a/test/built-ins/Promise/race/invoke-resolve-error-reject.js b/test/built-ins/Promise/race/invoke-resolve-error-reject.js index 71fd31f9e0..ad72583f11 100644 --- a/test/built-ins/Promise/race/invoke-resolve-error-reject.js +++ b/test/built-ins/Promise/race/invoke-resolve-error-reject.js @@ -4,7 +4,6 @@ /*--- description: Promise rejection in response to error from `Promise.resolve` esid: sec-promise.race -es6id: 25.4.4.3 info: | [...] 11. Let result be PerformPromiseRace(iteratorRecord, promiseCapability, C). diff --git a/test/built-ins/Promise/race/invoke-resolve-get-error-close.js b/test/built-ins/Promise/race/invoke-resolve-get-error-close.js index cf7f2bd44c..a8f56d4411 100644 --- a/test/built-ins/Promise/race/invoke-resolve-get-error-close.js +++ b/test/built-ins/Promise/race/invoke-resolve-get-error-close.js @@ -5,7 +5,6 @@ description: > Error retrieving the constructor's `resolve` method (iterator closing) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/invoke-resolve-get-error-reject.js b/test/built-ins/Promise/race/invoke-resolve-get-error-reject.js index 0aa6f45b5d..01cf58ab6d 100644 --- a/test/built-ins/Promise/race/invoke-resolve-get-error-reject.js +++ b/test/built-ins/Promise/race/invoke-resolve-get-error-reject.js @@ -5,7 +5,6 @@ description: > Error retrieving the constructor's `resolve` method (promise rejection) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/invoke-then-error-close.js b/test/built-ins/Promise/race/invoke-then-error-close.js index 07d80abab6..3c0a3b3e62 100644 --- a/test/built-ins/Promise/race/invoke-then-error-close.js +++ b/test/built-ins/Promise/race/invoke-then-error-close.js @@ -5,7 +5,6 @@ description: > Error thrown when invoking the instance's `then` method (closing iterator) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/invoke-then-error-reject.js b/test/built-ins/Promise/race/invoke-then-error-reject.js index 65209d4194..5e15fde6d6 100644 --- a/test/built-ins/Promise/race/invoke-then-error-reject.js +++ b/test/built-ins/Promise/race/invoke-then-error-reject.js @@ -5,7 +5,6 @@ description: > Error thrown when invoking the instance's `then` method (rejecting promise) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/invoke-then-get-error-close.js b/test/built-ins/Promise/race/invoke-then-get-error-close.js index 9dbb520172..8f352b8360 100644 --- a/test/built-ins/Promise/race/invoke-then-get-error-close.js +++ b/test/built-ins/Promise/race/invoke-then-get-error-close.js @@ -4,7 +4,6 @@ description: > Error thrown when accessing the instance's `then` method (closing iterator) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/invoke-then-get-error-reject.js b/test/built-ins/Promise/race/invoke-then-get-error-reject.js index 90be42920d..be708eb876 100644 --- a/test/built-ins/Promise/race/invoke-then-get-error-reject.js +++ b/test/built-ins/Promise/race/invoke-then-get-error-reject.js @@ -4,7 +4,6 @@ description: > Error thrown when accessing the instance's `then` method (rejecting promise) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/iter-next-val-err-no-close.js b/test/built-ins/Promise/race/iter-next-val-err-no-close.js index ddd2e6cec9..b71d45b90c 100644 --- a/test/built-ins/Promise/race/iter-next-val-err-no-close.js +++ b/test/built-ins/Promise/race/iter-next-val-err-no-close.js @@ -6,7 +6,6 @@ description: > Error when accessing an iterator result's `value` property (not closing iterator) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/iter-next-val-err-reject.js b/test/built-ins/Promise/race/iter-next-val-err-reject.js index 409d659822..f300138739 100644 --- a/test/built-ins/Promise/race/iter-next-val-err-reject.js +++ b/test/built-ins/Promise/race/iter-next-val-err-reject.js @@ -6,7 +6,6 @@ description: > Error when accessing an iterator result's `value` property (rejecting promise) esid: sec-promise.race -es6id: 25.4.4.3 info: | 11. Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 12. If result is an abrupt completion, diff --git a/test/built-ins/Promise/race/iter-step-err-no-close.js b/test/built-ins/Promise/race/iter-step-err-no-close.js index 625325f390..06d08deab2 100644 --- a/test/built-ins/Promise/race/iter-step-err-no-close.js +++ b/test/built-ins/Promise/race/iter-step-err-no-close.js @@ -4,7 +4,6 @@ description: > Error when advancing the provided iterable (not closing iterator) esid: sec-promise.race -es6id: 25.4.4.3 info: | [...] 11. Let result be PerformPromiseRace(iteratorRecord, promiseCapability, C). diff --git a/test/built-ins/Promise/race/iter-step-err-reject.js b/test/built-ins/Promise/race/iter-step-err-reject.js index dd51ebc17a..b82e01489f 100644 --- a/test/built-ins/Promise/race/iter-step-err-reject.js +++ b/test/built-ins/Promise/race/iter-step-err-reject.js @@ -5,7 +5,6 @@ description: > Error when advancing the provided iterable (rejecting promise) esid: sec-promise.race -es6id: 25.4.4.3 info: | [...] 11. Let result be PerformPromiseRace(iteratorRecord, promiseCapability, C). diff --git a/test/built-ins/Promise/reject/capability-invocation-error.js b/test/built-ins/Promise/reject/capability-invocation-error.js index 0d861f69da..6883ec19eb 100644 --- a/test/built-ins/Promise/reject/capability-invocation-error.js +++ b/test/built-ins/Promise/reject/capability-invocation-error.js @@ -3,7 +3,6 @@ /*--- description: Abrupt completion returned by "reject" capability esid: sec-promise.reject -es6id: 25.4.4.4 info: | 1. Let C be the this value. [...] diff --git a/test/built-ins/Promise/reject/capability-invocation.js b/test/built-ins/Promise/reject/capability-invocation.js index 9fc397676c..e0fe641a6a 100644 --- a/test/built-ins/Promise/reject/capability-invocation.js +++ b/test/built-ins/Promise/reject/capability-invocation.js @@ -3,7 +3,6 @@ /*--- description: Invocation of "reject" capability esid: sec-promise.reject -es6id: 25.4.4.4 info: | 1. Let C be the this value. [...] diff --git a/test/built-ins/Promise/resolve-ignored-via-fn-deferred.js b/test/built-ins/Promise/resolve-ignored-via-fn-deferred.js index a78396dafb..ce496818fd 100644 --- a/test/built-ins/Promise/resolve-ignored-via-fn-deferred.js +++ b/test/built-ins/Promise/resolve-ignored-via-fn-deferred.js @@ -5,7 +5,6 @@ description: > Rejected promises ignore resolution after deferred invocation of the provided reject function esid: sec-promise-executor -es6id: 25.4.3.1 info: | [...] 9. Let completion be Call(executor, undefined, diff --git a/test/built-ins/Promise/resolve-ignored-via-fn-immed.js b/test/built-ins/Promise/resolve-ignored-via-fn-immed.js index 7c5eefb26b..8e7c175569 100644 --- a/test/built-ins/Promise/resolve-ignored-via-fn-immed.js +++ b/test/built-ins/Promise/resolve-ignored-via-fn-immed.js @@ -5,7 +5,6 @@ description: > Rejected promises ignore resolution after immediate invocation of the provided reject function esid: sec-promise-executor -es6id: 25.4.3.3 info: | [...] 9. Let completion be Call(executor, undefined, diff --git a/test/built-ins/Promise/resolve/capability-invocation-error.js b/test/built-ins/Promise/resolve/capability-invocation-error.js index f28dad1bef..5f344d66b1 100644 --- a/test/built-ins/Promise/resolve/capability-invocation-error.js +++ b/test/built-ins/Promise/resolve/capability-invocation-error.js @@ -3,7 +3,6 @@ /*--- description: Abrupt completion returned by "resolve" capability esid: sec-promise.resolve -es6id: 25.4.4.5 info: | 1. Let C be the this value. [...] diff --git a/test/built-ins/Proxy/apply/arguments-realm.js b/test/built-ins/Proxy/apply/arguments-realm.js index 4fb3c3e0bc..d266a5a930 100644 --- a/test/built-ins/Proxy/apply/arguments-realm.js +++ b/test/built-ins/Proxy/apply/arguments-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > Arguments array is created in the Realm of the current execution context info: | diff --git a/test/built-ins/Proxy/apply/call-parameters.js b/test/built-ins/Proxy/apply/call-parameters.js index 38802c2c1f..1c5192c5cf 100644 --- a/test/built-ins/Proxy/apply/call-parameters.js +++ b/test/built-ins/Proxy/apply/call-parameters.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > trap is called with handler object as its context, and parameters are: target, the call context and and an array list with the called arguments diff --git a/test/built-ins/Proxy/apply/call-result.js b/test/built-ins/Proxy/apply/call-result.js index ffb84408a9..31d06bbdc1 100644 --- a/test/built-ins/Proxy/apply/call-result.js +++ b/test/built-ins/Proxy/apply/call-result.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > Return the result from the trap method. info: | diff --git a/test/built-ins/Proxy/apply/null-handler.js b/test/built-ins/Proxy/apply/null-handler.js index 34ae5e25f7..8b48f2f7c4 100644 --- a/test/built-ins/Proxy/apply/null-handler.js +++ b/test/built-ins/Proxy/apply/null-handler.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > [[Call]] (thisArgument, argumentsList) diff --git a/test/built-ins/Proxy/apply/return-abrupt.js b/test/built-ins/Proxy/apply/return-abrupt.js index 4ff83d40af..e268e42f9a 100644 --- a/test/built-ins/Proxy/apply/return-abrupt.js +++ b/test/built-ins/Proxy/apply/return-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > Return is an abrupt completion features: [Proxy] diff --git a/test/built-ins/Proxy/apply/trap-is-not-callable-realm.js b/test/built-ins/Proxy/apply/trap-is-not-callable-realm.js index d225b984c2..9826cd0a99 100644 --- a/test/built-ins/Proxy/apply/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/apply/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/apply/trap-is-not-callable.js b/test/built-ins/Proxy/apply/trap-is-not-callable.js index 39393a5c3d..cb55ef4121 100644 --- a/test/built-ins/Proxy/apply/trap-is-not-callable.js +++ b/test/built-ins/Proxy/apply/trap-is-not-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist -es6id: 9.5.13 description: > Throws if trap is not callable. features: [Proxy] diff --git a/test/built-ins/Proxy/apply/trap-is-null.js b/test/built-ins/Proxy/apply/trap-is-null.js index 1001355aab..8d097b4b76 100644 --- a/test/built-ins/Proxy/apply/trap-is-null.js +++ b/test/built-ins/Proxy/apply/trap-is-null.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.13 esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist description: > If the apply trap value is null, propagate the call to the target object. diff --git a/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js b/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js index 71277f85b9..5b7eb5d5f9 100644 --- a/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js +++ b/test/built-ins/Proxy/apply/trap-is-undefined-no-property.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.13 esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist description: > If trap is not set, propagate the call to the target object. diff --git a/test/built-ins/Proxy/apply/trap-is-undefined.js b/test/built-ins/Proxy/apply/trap-is-undefined.js index 9d9e5edfbf..646e01cb79 100644 --- a/test/built-ins/Proxy/apply/trap-is-undefined.js +++ b/test/built-ins/Proxy/apply/trap-is-undefined.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.13 esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist description: > If the apply trap value is undefined, propagate the call to the target object. diff --git a/test/built-ins/Proxy/construct/arguments-realm.js b/test/built-ins/Proxy/construct/arguments-realm.js index b0a92a7ab4..c63992a3c0 100644 --- a/test/built-ins/Proxy/construct/arguments-realm.js +++ b/test/built-ins/Proxy/construct/arguments-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Arguments array is created in the Realm of the current execution context info: | diff --git a/test/built-ins/Proxy/construct/call-parameters-new-target.js b/test/built-ins/Proxy/construct/call-parameters-new-target.js index 21adc346b9..24914e538a 100644 --- a/test/built-ins/Proxy/construct/call-parameters-new-target.js +++ b/test/built-ins/Proxy/construct/call-parameters-new-target.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.14 esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget description: > trap is called with handler object as its context, and parameters are: diff --git a/test/built-ins/Proxy/construct/call-parameters.js b/test/built-ins/Proxy/construct/call-parameters.js index 2c991048df..87b8c84cea 100644 --- a/test/built-ins/Proxy/construct/call-parameters.js +++ b/test/built-ins/Proxy/construct/call-parameters.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > trap is called with handler object as its context, and parameters are: target, an array list with the called arguments and the new target, and the diff --git a/test/built-ins/Proxy/construct/call-result.js b/test/built-ins/Proxy/construct/call-result.js index 2613af2525..e0805e5d46 100644 --- a/test/built-ins/Proxy/construct/call-result.js +++ b/test/built-ins/Proxy/construct/call-result.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Return the result from the trap method. info: | diff --git a/test/built-ins/Proxy/construct/null-handler.js b/test/built-ins/Proxy/construct/null-handler.js index 7dc774f63d..1688e5ed85 100644 --- a/test/built-ins/Proxy/construct/null-handler.js +++ b/test/built-ins/Proxy/construct/null-handler.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > [[Construct]] ( argumentsList, newTarget) diff --git a/test/built-ins/Proxy/construct/return-is-abrupt.js b/test/built-ins/Proxy/construct/return-is-abrupt.js index 71fee2e949..833c7f0134 100644 --- a/test/built-ins/Proxy/construct/return-is-abrupt.js +++ b/test/built-ins/Proxy/construct/return-is-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Return abrupt from constructor call. info: | diff --git a/test/built-ins/Proxy/construct/return-not-object-throws-boolean.js b/test/built-ins/Proxy/construct/return-not-object-throws-boolean.js index 91638c8b68..07ef7f8483 100644 --- a/test/built-ins/Proxy/construct/return-not-object-throws-boolean.js +++ b/test/built-ins/Proxy/construct/return-not-object-throws-boolean.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws a TypeError if trap result is not an Object: Boolean info: | diff --git a/test/built-ins/Proxy/construct/return-not-object-throws-number.js b/test/built-ins/Proxy/construct/return-not-object-throws-number.js index a5f4bd665d..d9fda73876 100644 --- a/test/built-ins/Proxy/construct/return-not-object-throws-number.js +++ b/test/built-ins/Proxy/construct/return-not-object-throws-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws a TypeError if trap result is not an Object: Number info: | diff --git a/test/built-ins/Proxy/construct/return-not-object-throws-string.js b/test/built-ins/Proxy/construct/return-not-object-throws-string.js index 50340bd005..c15807d557 100644 --- a/test/built-ins/Proxy/construct/return-not-object-throws-string.js +++ b/test/built-ins/Proxy/construct/return-not-object-throws-string.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws a TypeError if trap result is not an Object: String info: | diff --git a/test/built-ins/Proxy/construct/return-not-object-throws-symbol.js b/test/built-ins/Proxy/construct/return-not-object-throws-symbol.js index 973fc9f681..b5e539e08f 100644 --- a/test/built-ins/Proxy/construct/return-not-object-throws-symbol.js +++ b/test/built-ins/Proxy/construct/return-not-object-throws-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws a TypeError if trap result is not an Object: Symbol info: | diff --git a/test/built-ins/Proxy/construct/return-not-object-throws-undefined.js b/test/built-ins/Proxy/construct/return-not-object-throws-undefined.js index 7d979e85ae..68501258b8 100644 --- a/test/built-ins/Proxy/construct/return-not-object-throws-undefined.js +++ b/test/built-ins/Proxy/construct/return-not-object-throws-undefined.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws a TypeError if trap result is not an Object: undefined info: | diff --git a/test/built-ins/Proxy/construct/trap-is-not-callable-realm.js b/test/built-ins/Proxy/construct/trap-is-not-callable-realm.js index 853ea5879d..fce1e1b342 100644 --- a/test/built-ins/Proxy/construct/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/construct/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/construct/trap-is-not-callable.js b/test/built-ins/Proxy/construct/trap-is-not-callable.js index 9ecd403087..1543b729d3 100644 --- a/test/built-ins/Proxy/construct/trap-is-not-callable.js +++ b/test/built-ins/Proxy/construct/trap-is-not-callable.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget -es6id: 9.5.14 description: > Throws if trap is not callable. features: [Proxy] diff --git a/test/built-ins/Proxy/construct/trap-is-null.js b/test/built-ins/Proxy/construct/trap-is-null.js index ee830bc69c..712cb64199 100644 --- a/test/built-ins/Proxy/construct/trap-is-null.js +++ b/test/built-ins/Proxy/construct/trap-is-null.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.14 esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget description: > If the construct trap value is null, propagate the construct to the target object. diff --git a/test/built-ins/Proxy/construct/trap-is-undefined-no-property.js b/test/built-ins/Proxy/construct/trap-is-undefined-no-property.js index 6edcd7e240..f90d0199e6 100644 --- a/test/built-ins/Proxy/construct/trap-is-undefined-no-property.js +++ b/test/built-ins/Proxy/construct/trap-is-undefined-no-property.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.14 esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget description: > If the construct trap is not set, propagate the construct to the target object. diff --git a/test/built-ins/Proxy/construct/trap-is-undefined.js b/test/built-ins/Proxy/construct/trap-is-undefined.js index 8017bc5120..6f95051029 100644 --- a/test/built-ins/Proxy/construct/trap-is-undefined.js +++ b/test/built-ins/Proxy/construct/trap-is-undefined.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.14 esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget description: > If the construct trap value is undefined, propagate the construct to the target object. diff --git a/test/built-ins/Proxy/defineProperty/desc-realm.js b/test/built-ins/Proxy/defineProperty/desc-realm.js index 0a18f9a061..7b45822af7 100644 --- a/test/built-ins/Proxy/defineProperty/desc-realm.js +++ b/test/built-ins/Proxy/defineProperty/desc-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Property descriptor object is created in the Realm of the current execution context diff --git a/test/built-ins/Proxy/defineProperty/null-handler-realm.js b/test/built-ins/Proxy/defineProperty/null-handler-realm.js index 44e228e8e2..aa769fa8b8 100644 --- a/test/built-ins/Proxy/defineProperty/null-handler-realm.js +++ b/test/built-ins/Proxy/defineProperty/null-handler-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throws a TypeError exception if handler is null (honoring the realm of the current execution context). diff --git a/test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js b/test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js index af491e9518..8bfb8e7774 100644 --- a/test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js +++ b/test/built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throw a TypeError exception if Desc is not configurable and target property descriptor is configurable and trap result is true (honoring the realm of diff --git a/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js b/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js index 5b1d0d311d..67a9c9761c 100644 --- a/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js +++ b/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throw a TypeError exception if Desc and target property descriptor are not compatible and trap result is true. diff --git a/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js b/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js index 042c617392..4dfc54a1ac 100644 --- a/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js +++ b/test/built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throw a TypeError exception if Desc and target property descriptor are not compatible and trap result is true (honoring the realm of the current diff --git a/test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js b/test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js index d883ecdf22..b9decc4740 100644 --- a/test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js +++ b/test/built-ins/Proxy/defineProperty/targetdesc-undefined-not-configurable-descriptor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throw a TypeError exception if Desc is not configurable and target property descriptor is undefined, and trap result is true (honoring the realm of the diff --git a/test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js b/test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js index c281849d99..3de305ad12 100644 --- a/test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js +++ b/test/built-ins/Proxy/defineProperty/targetdesc-undefined-target-is-not-extensible-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throw a TypeError exception if Desc is not configurable and target is not extensible, and trap result is true (honoring the realm of the current diff --git a/test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js b/test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js index e5674f8a79..b128a8ecc9 100644 --- a/test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-defineownproperty-p-desc -es6id: 9.5.6 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js b/test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js index a6fb334d93..4c65cf4955 100644 --- a/test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-delete-p -es6id: 9.5.10 description: > Throws when trap is not callable. (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/get-fn-realm.js b/test/built-ins/Proxy/get-fn-realm.js index b93ee9718a..a6f1b45e69 100644 --- a/test/built-ins/Proxy/get-fn-realm.js +++ b/test/built-ins/Proxy/get-fn-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-getfunctionrealm -es6id: 7.3.22 description: > The realm of a proxy exotic object is the realm of its target function info: | diff --git a/test/built-ins/Proxy/get/trap-is-not-callable-realm.js b/test/built-ins/Proxy/get/trap-is-not-callable-realm.js index 2c17b94191..5ca9a99852 100644 --- a/test/built-ins/Proxy/get/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/get/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-get-p-receiver -es6id: 9.5.8 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/get/trap-is-undefined-receiver.js b/test/built-ins/Proxy/get/trap-is-undefined-receiver.js index f0d7d0f8a7..ac664f87bd 100644 --- a/test/built-ins/Proxy/get/trap-is-undefined-receiver.js +++ b/test/built-ins/Proxy/get/trap-is-undefined-receiver.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 Aleksey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.8 esid: sec-proxy-object-internal-methods-and-internal-slots-get-p-receiver description: > Pass to target's [[Get]] correct receiver if trap is missing diff --git a/test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js b/test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js index 7355c45ed0..19c732b59f 100644 --- a/test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js +++ b/test/built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-getownproperty-p -es6id: 9.5.5 description: > Error when trap result is neither Object nor undefined (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js b/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js index 1b32775f7a..d9c5cc3d8b 100644 --- a/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-getownproperty-p -es6id: 9.5.5 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js b/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js index fff2def4b1..2adb8367ef 100644 --- a/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-getprototypeof -es6id: 9.5.1 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/has/trap-is-not-callable-realm.js b/test/built-ins/Proxy/has/trap-is-not-callable-realm.js index c628a54a61..98d3da1435 100644 --- a/test/built-ins/Proxy/has/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/has/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-hasproperty-p -es6id: 9.5.7 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js b/test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js index 546ed847f6..eeaa4197e8 100644 --- a/test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-isextensible -es6id: 9.5.3 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js b/test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js index 4adc5f0e29..19932f2fea 100644 --- a/test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-preventextensions -es6id: 9.5.4 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/set/trap-is-not-callable-realm.js b/test/built-ins/Proxy/set/trap-is-not-callable-realm.js index 5f5845b0e9..9d7b53866f 100644 --- a/test/built-ins/Proxy/set/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/set/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-set-p-v-receiver -es6id: 9.5.9 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/set/trap-is-undefined-receiver.js b/test/built-ins/Proxy/set/trap-is-undefined-receiver.js index 255265d039..badd719840 100644 --- a/test/built-ins/Proxy/set/trap-is-undefined-receiver.js +++ b/test/built-ins/Proxy/set/trap-is-undefined-receiver.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 Aleksey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.9 esid: sec-proxy-object-internal-methods-and-internal-slots-set-p-v-receiver description: > Pass to target's [[Set]] correct receiver if trap is missing diff --git a/test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js b/test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js index 22bfb93e3a..811165b48d 100644 --- a/test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js +++ b/test/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-setprototypeof-v -es6id: 9.5.2 description: > Handler can only return true for non-extensible targets if the given prototype is the same as target's prototype diff --git a/test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js b/test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js index bf044a5b52..cfb63aaa10 100644 --- a/test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js +++ b/test/built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.2 esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist description: > Return abrupt getting handler trap diff --git a/test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js b/test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js index e68db7348e..af4d7cb2da 100644 --- a/test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js +++ b/test/built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-proxy-object-internal-methods-and-internal-slots-setprototypeof-v -es6id: 9.5.2 description: > Throws if trap is not callable (honoring the Realm of the current execution context) diff --git a/test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js b/test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js index 625b7792e9..0536f04e42 100644 --- a/test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js +++ b/test/built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.2 esid: sec-proxy-object-internal-methods-and-internal-slots-setprototypeof-v description: > Return target.[[SetPrototypeOf]] (V) if trap is undefined or null. diff --git a/test/built-ins/RegExp/Symbol.species/return-value.js b/test/built-ins/RegExp/Symbol.species/return-value.js index 07dbd37458..02b8b618dd 100644 --- a/test/built-ins/RegExp/Symbol.species/return-value.js +++ b/test/built-ins/RegExp/Symbol.species/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp-@@species -es6id: 21.2.4.2 description: Return value of @@species accessor method info: | 1. Return the this value. diff --git a/test/built-ins/RegExp/Symbol.species/symbol-species.js b/test/built-ins/RegExp/Symbol.species/symbol-species.js index f25e20589f..b5b0c29fdd 100644 --- a/test/built-ins/RegExp/Symbol.species/symbol-species.js +++ b/test/built-ins/RegExp/Symbol.species/symbol-species.js @@ -5,7 +5,6 @@ info: | RegExp has a property at `Symbol.species` esid: sec-get-regexp-@@species -es6id: 21.2.4.2 author: Sam Mikes description: RegExp[Symbol.species] exists per spec includes: [propertyHelper.js] diff --git a/test/built-ins/RegExp/lastIndex.js b/test/built-ins/RegExp/lastIndex.js index 8d24936a86..559512e7a0 100644 --- a/test/built-ins/RegExp/lastIndex.js +++ b/test/built-ins/RegExp/lastIndex.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-regexp-pattern-flags -es6id: 21.2.3.1 description: Initial state of the `lastIndex` property info: | [...] diff --git a/test/built-ins/RegExp/proto-from-ctor-realm.js b/test/built-ins/RegExp/proto-from-ctor-realm.js index 09531d2de3..8e2a339e02 100644 --- a/test/built-ins/RegExp/proto-from-ctor-realm.js +++ b/test/built-ins/RegExp/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-boolean-constructor-boolean-value -es6id: 19.2.3.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/RegExp/prototype/Symbol.split/splitter-proto-from-ctor-realm.js b/test/built-ins/RegExp/prototype/Symbol.split/splitter-proto-from-ctor-realm.js index 8303913384..b4608b8287 100644 --- a/test/built-ins/RegExp/prototype/Symbol.split/splitter-proto-from-ctor-realm.js +++ b/test/built-ins/RegExp/prototype/Symbol.split/splitter-proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-regexp.prototype-@@split -es6id: 21.2.5.11 description: Default [[Prototype]] value derived from realm of the constructor info: | 10. Let splitter be ? Construct(C, « rx, newFlags »). diff --git a/test/built-ins/RegExp/prototype/flags/length.js b/test/built-ins/RegExp/prototype/flags/length.js index 3789d49df6..1e824a3de4 100644 --- a/test/built-ins/RegExp/prototype/flags/length.js +++ b/test/built-ins/RegExp/prototype/flags/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-regexp.prototype.flags -es6id: 21.2.5.3 description: > get RegExp.prototype.flags.length is 0. info: | diff --git a/test/built-ins/RegExp/prototype/flags/name.js b/test/built-ins/RegExp/prototype/flags/name.js index d3c56bc33f..5797a17b29 100644 --- a/test/built-ins/RegExp/prototype/flags/name.js +++ b/test/built-ins/RegExp/prototype/flags/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-regexp.prototype.flags -es6id: 21.2.5.3 description: > get RegExp.prototype.flags.name is "get flags". info: | diff --git a/test/built-ins/RegExp/prototype/global/cross-realm.js b/test/built-ins/RegExp/prototype/global/cross-realm.js index 36e8e65995..d50c4f04f1 100644 --- a/test/built-ins/RegExp/prototype/global/cross-realm.js +++ b/test/built-ins/RegExp/prototype/global/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.global -es6id: 21.2.5.4 description: A TypeError is thrown when the "this" value is an invalid cross-realm Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/global/this-val-invalid-obj.js b/test/built-ins/RegExp/prototype/global/this-val-invalid-obj.js index 123373d483..1255c17fef 100644 --- a/test/built-ins/RegExp/prototype/global/this-val-invalid-obj.js +++ b/test/built-ins/RegExp/prototype/global/this-val-invalid-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.global -es6id: 21.2.5.4 description: A TypeError is thrown when the "this" value is an invalid Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/global/this-val-non-obj.js b/test/built-ins/RegExp/prototype/global/this-val-non-obj.js index b30ff6b759..a1c0515b61 100644 --- a/test/built-ins/RegExp/prototype/global/this-val-non-obj.js +++ b/test/built-ins/RegExp/prototype/global/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.global -es6id: 21.2.5.4 description: A TypeError is thrown when the "this" value is not an Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/ignoreCase/cross-realm.js b/test/built-ins/RegExp/prototype/ignoreCase/cross-realm.js index edf875062e..4fd3ace8da 100644 --- a/test/built-ins/RegExp/prototype/ignoreCase/cross-realm.js +++ b/test/built-ins/RegExp/prototype/ignoreCase/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.ignorecase -es6id: 21.2.5.5 description: A TypeError is thrown when the "this" value is an invalid cross-realm Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/ignoreCase/this-val-invalid-obj.js b/test/built-ins/RegExp/prototype/ignoreCase/this-val-invalid-obj.js index b08d8e524b..6fec080d1b 100644 --- a/test/built-ins/RegExp/prototype/ignoreCase/this-val-invalid-obj.js +++ b/test/built-ins/RegExp/prototype/ignoreCase/this-val-invalid-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.ignorecase -es6id: 21.2.5.5 description: A TypeError is thrown when the "this" value is an invalid Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/ignoreCase/this-val-non-obj.js b/test/built-ins/RegExp/prototype/ignoreCase/this-val-non-obj.js index 1c507b865b..b7c77f162e 100644 --- a/test/built-ins/RegExp/prototype/ignoreCase/this-val-non-obj.js +++ b/test/built-ins/RegExp/prototype/ignoreCase/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.ignorecase -es6id: 21.2.5.5 description: A TypeError is thrown when the "this" value is not an Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/multiline/cross-realm.js b/test/built-ins/RegExp/prototype/multiline/cross-realm.js index 883d19f725..5ed5bceae1 100644 --- a/test/built-ins/RegExp/prototype/multiline/cross-realm.js +++ b/test/built-ins/RegExp/prototype/multiline/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.multiline -es6id: 21.2.5.7 description: A TypeError is thrown when the "this" value is an invalid cross-realm Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/multiline/this-val-invalid-obj.js b/test/built-ins/RegExp/prototype/multiline/this-val-invalid-obj.js index 85a8b78b87..815e973a85 100644 --- a/test/built-ins/RegExp/prototype/multiline/this-val-invalid-obj.js +++ b/test/built-ins/RegExp/prototype/multiline/this-val-invalid-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.multiline -es6id: 21.2.5.7 description: A TypeError is thrown when the "this" value is an invalid Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/multiline/this-val-non-obj.js b/test/built-ins/RegExp/prototype/multiline/this-val-non-obj.js index 007ed55724..c62940c8c5 100644 --- a/test/built-ins/RegExp/prototype/multiline/this-val-non-obj.js +++ b/test/built-ins/RegExp/prototype/multiline/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.multiline -es6id: 21.2.5.7 description: A TypeError is thrown when the "this" value is not an Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/no-regexp-matcher.js b/test/built-ins/RegExp/prototype/no-regexp-matcher.js index 6af0de2d6d..12475d3be0 100644 --- a/test/built-ins/RegExp/prototype/no-regexp-matcher.js +++ b/test/built-ins/RegExp/prototype/no-regexp-matcher.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-the-regexp-prototype-object -es6id: 21.2.5 description: > The RegExp prototype object does not have a [[RegExpMatcher]] internal slot info: | diff --git a/test/built-ins/RegExp/prototype/source/cross-realm.js b/test/built-ins/RegExp/prototype/source/cross-realm.js index edc659ed8a..89f8581c14 100644 --- a/test/built-ins/RegExp/prototype/source/cross-realm.js +++ b/test/built-ins/RegExp/prototype/source/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: A TypeError is thrown when the "this" value is an invalid cross-realm Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/source/length.js b/test/built-ins/RegExp/prototype/source/length.js index 95bcdb423d..3a6e55acd9 100644 --- a/test/built-ins/RegExp/prototype/source/length.js +++ b/test/built-ins/RegExp/prototype/source/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: > get RegExp.prototype.source.length is 0. info: | diff --git a/test/built-ins/RegExp/prototype/source/name.js b/test/built-ins/RegExp/prototype/source/name.js index 8ad060446a..3c5ba10b2e 100644 --- a/test/built-ins/RegExp/prototype/source/name.js +++ b/test/built-ins/RegExp/prototype/source/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: > get RegExp.prototype.source.name is "get source". info: | diff --git a/test/built-ins/RegExp/prototype/source/prop-desc.js b/test/built-ins/RegExp/prototype/source/prop-desc.js index 838962bd4d..5419862c8f 100644 --- a/test/built-ins/RegExp/prototype/source/prop-desc.js +++ b/test/built-ins/RegExp/prototype/source/prop-desc.js @@ -3,8 +3,6 @@ /*--- esid: sec-get-regexp.prototype.source -es5id: 15.10.7.1-2 -es6id: 21.2.5.10 description: > RegExp.prototype.source is an accessor property whose set accessor function is undefined diff --git a/test/built-ins/RegExp/prototype/source/this-val-invalid-obj.js b/test/built-ins/RegExp/prototype/source/this-val-invalid-obj.js index bf136a4abe..59cdfa4960 100644 --- a/test/built-ins/RegExp/prototype/source/this-val-invalid-obj.js +++ b/test/built-ins/RegExp/prototype/source/this-val-invalid-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: A TypeError is thrown when the "this" value is an invalid Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/source/this-val-non-obj.js b/test/built-ins/RegExp/prototype/source/this-val-non-obj.js index e0d3dcb860..956e700625 100644 --- a/test/built-ins/RegExp/prototype/source/this-val-non-obj.js +++ b/test/built-ins/RegExp/prototype/source/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: A TypeError is thrown when the "this" value is not an Object info: | 1. Let R be the this value. diff --git a/test/built-ins/RegExp/prototype/source/value-empty.js b/test/built-ins/RegExp/prototype/source/value-empty.js index c657bf2b93..db0eb2433b 100644 --- a/test/built-ins/RegExp/prototype/source/value-empty.js +++ b/test/built-ins/RegExp/prototype/source/value-empty.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: > Return value can be used to create an equivalent RegExp when the [[OriginalSource]] internal slot is the empty string diff --git a/test/built-ins/RegExp/prototype/source/value-line-terminator.js b/test/built-ins/RegExp/prototype/source/value-line-terminator.js index 6df7665e96..168f7ae675 100644 --- a/test/built-ins/RegExp/prototype/source/value-line-terminator.js +++ b/test/built-ins/RegExp/prototype/source/value-line-terminator.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: > Return value can be used to create an equivalent RegExp when the [[OriginalSource]] internal slot contains a LineTerminator diff --git a/test/built-ins/RegExp/prototype/source/value-slash.js b/test/built-ins/RegExp/prototype/source/value-slash.js index ae71866382..d7a4badf9e 100644 --- a/test/built-ins/RegExp/prototype/source/value-slash.js +++ b/test/built-ins/RegExp/prototype/source/value-slash.js @@ -3,7 +3,6 @@ /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: Return value can be used to create an equivalent RegExp info: | [...] diff --git a/test/built-ins/RegExp/prototype/source/value-u.js b/test/built-ins/RegExp/prototype/source/value-u.js index 221b3ca299..897fa433e7 100644 --- a/test/built-ins/RegExp/prototype/source/value-u.js +++ b/test/built-ins/RegExp/prototype/source/value-u.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: > Return value can be used to create an equivalent RegExp when the [[OriginalFlags]] internal slot contains the `u` flag diff --git a/test/built-ins/RegExp/prototype/source/value.js b/test/built-ins/RegExp/prototype/source/value.js index ee1718047d..3a47857931 100644 --- a/test/built-ins/RegExp/prototype/source/value.js +++ b/test/built-ins/RegExp/prototype/source/value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-regexp.prototype.source -es6id: 21.2.5.10 description: Return value can be used to create an equivalent RegExp info: | [...] diff --git a/test/built-ins/Set/Symbol.species/return-value.js b/test/built-ins/Set/Symbol.species/return-value.js index c1d60a8a81..210e7f5799 100644 --- a/test/built-ins/Set/Symbol.species/return-value.js +++ b/test/built-ins/Set/Symbol.species/return-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-set-@@species -es6id: 23.2.2.2 description: Return value of @@species accessor method info: | 1. Return the this value. diff --git a/test/built-ins/Set/Symbol.species/symbol-species.js b/test/built-ins/Set/Symbol.species/symbol-species.js index 0c8e2b0638..5d59b94f31 100644 --- a/test/built-ins/Set/Symbol.species/symbol-species.js +++ b/test/built-ins/Set/Symbol.species/symbol-species.js @@ -5,7 +5,6 @@ info: | Set has a property at `Symbol.species` esid: sec-get-set-@@species -es6id: 23.2.2.2 author: Sam Mikes description: Set[Symbol.species] exists per spec includes: [propertyHelper.js] diff --git a/test/built-ins/Set/proto-from-ctor-realm.js b/test/built-ins/Set/proto-from-ctor-realm.js index c5bf95d28e..a45b39ecea 100644 --- a/test/built-ins/Set/proto-from-ctor-realm.js +++ b/test/built-ins/Set/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-set-iterable -es6id: 23.2.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/String/length.js b/test/built-ins/String/length.js index 7b19a381c3..d6ec54f24b 100644 --- a/test/built-ins/String/length.js +++ b/test/built-ins/String/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-properties-of-string-instances-length -es6id: 21.1.4.1 description: The "length" property of String objects info: | [...] diff --git a/test/built-ins/String/numeric-properties.js b/test/built-ins/String/numeric-properties.js index d5981f73ad..986d51ccf7 100644 --- a/test/built-ins/String/numeric-properties.js +++ b/test/built-ins/String/numeric-properties.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string-exotic-objects-getownproperty-p -es6id: 9.4.3.1 description: > Property descriptor for numeric "own" properties of an exotic String object info: | diff --git a/test/built-ins/String/proto-from-ctor-realm.js b/test/built-ins/String/proto-from-ctor-realm.js index 16200238bd..e0a75cdeb2 100644 --- a/test/built-ins/String/proto-from-ctor-realm.js +++ b/test/built-ins/String/proto-from-ctor-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string-constructor-string-value -es6id: 21.1.1.1 description: Default [[Prototype]] value derived from realm of the newTarget info: | [...] diff --git a/test/built-ins/String/prototype/charAt/pos-coerce-err.js b/test/built-ins/String/prototype/charAt/pos-coerce-err.js index a1c48a00e3..27bdb1d0fb 100644 --- a/test/built-ins/String/prototype/charAt/pos-coerce-err.js +++ b/test/built-ins/String/prototype/charAt/pos-coerce-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charat -es6id: 21.1.3.1 description: Error when attempting to coerce providec "pos" to a Number info: | [...] diff --git a/test/built-ins/String/prototype/charAt/pos-coerce-string.js b/test/built-ins/String/prototype/charAt/pos-coerce-string.js index 53825a15a0..fdecad8b61 100644 --- a/test/built-ins/String/prototype/charAt/pos-coerce-string.js +++ b/test/built-ins/String/prototype/charAt/pos-coerce-string.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charat -es6id: 21.1.3.1 description: Coercion of "pos" string value into number info: | [...] diff --git a/test/built-ins/String/prototype/charAt/pos-rounding.js b/test/built-ins/String/prototype/charAt/pos-rounding.js index 10615e2e7b..1f0af9b47b 100644 --- a/test/built-ins/String/prototype/charAt/pos-rounding.js +++ b/test/built-ins/String/prototype/charAt/pos-rounding.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charat -es6id: 21.1.3.1 description: Rounding of the provided "pos" number info: | [...] diff --git a/test/built-ins/String/prototype/charAt/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/charAt/this-value-not-obj-coercible.js index 46029419c5..fae04fecf0 100644 --- a/test/built-ins/String/prototype/charAt/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/charAt/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charat -es6id: 21.1.3.1 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/charCodeAt/pos-coerce-err.js b/test/built-ins/String/prototype/charCodeAt/pos-coerce-err.js index 801a8baaa6..067e9a5ec0 100644 --- a/test/built-ins/String/prototype/charCodeAt/pos-coerce-err.js +++ b/test/built-ins/String/prototype/charCodeAt/pos-coerce-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charcodeat -es6id: 21.1.3.2 description: Error when attempting to coerce providec "pos" to a Number info: | [...] diff --git a/test/built-ins/String/prototype/charCodeAt/pos-coerce-string.js b/test/built-ins/String/prototype/charCodeAt/pos-coerce-string.js index 9d11a7f46a..6c457e65f9 100644 --- a/test/built-ins/String/prototype/charCodeAt/pos-coerce-string.js +++ b/test/built-ins/String/prototype/charCodeAt/pos-coerce-string.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charcodeat -es6id: 21.1.3.2 description: Coercion of "pos" string value into number info: | [...] diff --git a/test/built-ins/String/prototype/charCodeAt/pos-rounding.js b/test/built-ins/String/prototype/charCodeAt/pos-rounding.js index 32bd2ac7a6..87710123d2 100644 --- a/test/built-ins/String/prototype/charCodeAt/pos-rounding.js +++ b/test/built-ins/String/prototype/charCodeAt/pos-rounding.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charcodeat -es6id: 21.1.3.2 description: Rounding of the provided "pos" number info: | [...] diff --git a/test/built-ins/String/prototype/charCodeAt/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/charCodeAt/this-value-not-obj-coercible.js index 1ec966f79f..5ccb306636 100644 --- a/test/built-ins/String/prototype/charCodeAt/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/charCodeAt/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.charcodeat -es6id: 21.1.3.2 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/concat/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/concat/this-value-not-obj-coercible.js index 23901e886c..1dac48a1fe 100644 --- a/test/built-ins/String/prototype/concat/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/concat/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.concat -es6id: 21.1.3.4 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/indexOf/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/indexOf/this-value-not-obj-coercible.js index 4efca6cffe..7652653532 100644 --- a/test/built-ins/String/prototype/indexOf/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/indexOf/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.indexof -es6id: 21.1.3.8 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/lastIndexOf/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/lastIndexOf/this-value-not-obj-coercible.js index 4eae545b44..f56ecdd718 100644 --- a/test/built-ins/String/prototype/lastIndexOf/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/lastIndexOf/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.lastindexof -es6id: 21.1.3.9 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/localeCompare/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/localeCompare/this-value-not-obj-coercible.js index 7adac196a5..d670ae0e03 100644 --- a/test/built-ins/String/prototype/localeCompare/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/localeCompare/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.localecompare -es6id: 21.1.3.10 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/match/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/match/this-value-not-obj-coercible.js index e7e9fac2f0..83df0c8ab7 100644 --- a/test/built-ins/String/prototype/match/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/match/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.match -es6id: 21.1.3.11 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/replace/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/replace/this-value-not-obj-coercible.js index 858dce314e..ca88621897 100644 --- a/test/built-ins/String/prototype/replace/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/replace/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.replace -es6id: 21.1.3.14 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/search/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/search/this-value-not-obj-coercible.js index 461a347cac..bd28d2c799 100644 --- a/test/built-ins/String/prototype/search/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/search/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.search -es6id: 21.1.3.15 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/slice/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/slice/this-value-not-obj-coercible.js index b80ffd81ee..0ece63bde2 100644 --- a/test/built-ins/String/prototype/slice/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/slice/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.slice -es6id: 21.1.3.16 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/split/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/split/this-value-not-obj-coercible.js index f769cb747c..077db95e34 100644 --- a/test/built-ins/String/prototype/split/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/split/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.split -es6id: 21.1.3.17 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/substring/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/substring/this-value-not-obj-coercible.js index b10927b819..681385f64c 100644 --- a/test/built-ins/String/prototype/substring/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/substring/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.substring -es6id: 21.1.3.19 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/toLocaleLowerCase/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/toLocaleLowerCase/this-value-not-obj-coercible.js index e058b14f32..80bc46dddb 100644 --- a/test/built-ins/String/prototype/toLocaleLowerCase/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/toLocaleLowerCase/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.tolocalelowercase -es6id: 21.1.3.20 description: The "this" value must be object-coercible info: | This function works exactly the same as toLowerCase except that its result is diff --git a/test/built-ins/String/prototype/toLocaleUpperCase/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/toLocaleUpperCase/this-value-not-obj-coercible.js index fb9d816fec..f56d123fed 100644 --- a/test/built-ins/String/prototype/toLocaleUpperCase/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/toLocaleUpperCase/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.tolocaleuppercase -es6id: 21.1.3.21 description: The "this" value must be object-coercible info: | This function works exactly the same as toUpperCase except that its result is diff --git a/test/built-ins/String/prototype/toLowerCase/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/toLowerCase/this-value-not-obj-coercible.js index 17638ca4e9..8fe0be862b 100644 --- a/test/built-ins/String/prototype/toLowerCase/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/toLowerCase/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.tolowercase -es6id: 21.1.3.22 description: The "this" value must be object-coercible info: | 1. Let O be ? RequireObjectCoercible(this value). diff --git a/test/built-ins/String/prototype/toString/name.js b/test/built-ins/String/prototype/toString/name.js index 15146e3ac0..ee0a34c00c 100644 --- a/test/built-ins/String/prototype/toString/name.js +++ b/test/built-ins/String/prototype/toString/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-string.prototype.tostring -es6id: 21.1.3.23 description: > String.prototype.toString.name is "toString". info: | diff --git a/test/built-ins/String/prototype/toUpperCase/this-value-not-obj-coercible.js b/test/built-ins/String/prototype/toUpperCase/this-value-not-obj-coercible.js index 757aa5d57e..30e55f35be 100644 --- a/test/built-ins/String/prototype/toUpperCase/this-value-not-obj-coercible.js +++ b/test/built-ins/String/prototype/toUpperCase/this-value-not-obj-coercible.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.touppercase -es6id: 21.1.3.24 description: The "this" value must be object-coercible info: | This function behaves in exactly the same way as diff --git a/test/built-ins/String/prototype/valueOf/length.js b/test/built-ins/String/prototype/valueOf/length.js index 40332fcde8..5596d341ba 100644 --- a/test/built-ins/String/prototype/valueOf/length.js +++ b/test/built-ins/String/prototype/valueOf/length.js @@ -3,7 +3,6 @@ /*--- esid: sec-string.prototype.valueof -es6id: 21.1.3.26 description: > String.prototype.valueOf.length is 0. info: | diff --git a/test/built-ins/String/prototype/valueOf/name.js b/test/built-ins/String/prototype/valueOf/name.js index d5b71ed639..11d2395066 100644 --- a/test/built-ins/String/prototype/valueOf/name.js +++ b/test/built-ins/String/prototype/valueOf/name.js @@ -3,7 +3,6 @@ /*--- esid: sec-string.prototype.valueof -es6id: 21.1.3.26 description: > String.prototype.valueOf.name is "valueOf". info: | diff --git a/test/built-ins/String/symbol-string-coercion.js b/test/built-ins/String/symbol-string-coercion.js index 2c57e1a571..ece42e6ca1 100644 --- a/test/built-ins/String/symbol-string-coercion.js +++ b/test/built-ins/String/symbol-string-coercion.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string-constructor -es6id: 21.1.1 description: Symbol value may be coerced to a String info: | 1. If no arguments were passed to this function invocation, let s be "". diff --git a/test/built-ins/String/symbol-wrapping.js b/test/built-ins/String/symbol-wrapping.js index c2ef250ee9..3dc60c321a 100644 --- a/test/built-ins/String/symbol-wrapping.js +++ b/test/built-ins/String/symbol-wrapping.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string-constructor -es6id: 21.1.1 description: Symbol value may not be wrapped info: | 1. If no arguments were passed to this function invocation, let s be "". diff --git a/test/built-ins/Symbol/desc-to-string-symbol.js b/test/built-ins/Symbol/desc-to-string-symbol.js index e9aaa69b74..50ae8a721a 100644 --- a/test/built-ins/Symbol/desc-to-string-symbol.js +++ b/test/built-ins/Symbol/desc-to-string-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol-constructor -es6id: 19.4.1 description: The first argument is coerced to a String value (from a Symbol) info: | 1. If NewTarget is not undefined, throw a TypeError exception. diff --git a/test/built-ins/Symbol/desc-to-string.js b/test/built-ins/Symbol/desc-to-string.js index aa6e885b84..4d1f0c01c9 100644 --- a/test/built-ins/Symbol/desc-to-string.js +++ b/test/built-ins/Symbol/desc-to-string.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol-constructor -es6id: 19.4.1 description: The first argument is coerced to a String value (from an object) info: | 1. If NewTarget is not undefined, throw a TypeError exception. diff --git a/test/built-ins/Symbol/for/create-value.js b/test/built-ins/Symbol/for/create-value.js index d29b2a7649..5ed06c1100 100644 --- a/test/built-ins/Symbol/for/create-value.js +++ b/test/built-ins/Symbol/for/create-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.for -es6id: 19.4.2.1 description: Creation of a unique Symbol value info: | 1. Let stringKey be ? ToString(key). diff --git a/test/built-ins/Symbol/for/cross-realm.js b/test/built-ins/Symbol/for/cross-realm.js index 1c95fa5f53..e6cbbaee43 100644 --- a/test/built-ins/Symbol/for/cross-realm.js +++ b/test/built-ins/Symbol/for/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.for -es6id: 19.4.2.1 description: Global symbol registry is shared by all realms info: | The GlobalSymbolRegistry is a List that is globally available. It is shared diff --git a/test/built-ins/Symbol/for/prop-desc.js b/test/built-ins/Symbol/for/prop-desc.js index d2419d423b..bca3930d6d 100644 --- a/test/built-ins/Symbol/for/prop-desc.js +++ b/test/built-ins/Symbol/for/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.for -es6id: 19.4.2.1 description: Property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Symbol/for/retrieve-value.js b/test/built-ins/Symbol/for/retrieve-value.js index 2b2ac62b66..c1c966c4c8 100644 --- a/test/built-ins/Symbol/for/retrieve-value.js +++ b/test/built-ins/Symbol/for/retrieve-value.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.for -es6id: 19.4.2.1 description: Retrieval of previously-created value info: | 1. Let stringKey be ? ToString(key). diff --git a/test/built-ins/Symbol/for/to-string-err.js b/test/built-ins/Symbol/for/to-string-err.js index 2453618cd6..63dd76f7c4 100644 --- a/test/built-ins/Symbol/for/to-string-err.js +++ b/test/built-ins/Symbol/for/to-string-err.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.for -es6id: 19.4.2.1 description: Error resulting from string coercion of first argument info: | 1. Let stringKey be ? ToString(key). diff --git a/test/built-ins/Symbol/hasInstance/cross-realm.js b/test/built-ins/Symbol/hasInstance/cross-realm.js index 579e3f5121..b7f2dd5197 100644 --- a/test/built-ins/Symbol/hasInstance/cross-realm.js +++ b/test/built-ins/Symbol/hasInstance/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.hasinstance -es6id: 19.4.2.2 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/invoked-with-new.js b/test/built-ins/Symbol/invoked-with-new.js index a3158cc68f..127e208228 100644 --- a/test/built-ins/Symbol/invoked-with-new.js +++ b/test/built-ins/Symbol/invoked-with-new.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol-constructor -es6id: 19.4.1 description: The Symbol constructor may not be invoked with `new` info: | 1. If NewTarget is not undefined, throw a TypeError exception. diff --git a/test/built-ins/Symbol/isConcatSpreadable/cross-realm.js b/test/built-ins/Symbol/isConcatSpreadable/cross-realm.js index f9c487f6b1..270b1c6e01 100644 --- a/test/built-ins/Symbol/isConcatSpreadable/cross-realm.js +++ b/test/built-ins/Symbol/isConcatSpreadable/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.isconcatspreadable -es6id: 19.4.2.3 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/iterator/cross-realm.js b/test/built-ins/Symbol/iterator/cross-realm.js index 522d60f163..4313fe9f70 100644 --- a/test/built-ins/Symbol/iterator/cross-realm.js +++ b/test/built-ins/Symbol/iterator/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.iterator -es6id: 19.4.2.4 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/keyFor/arg-non-symbol.js b/test/built-ins/Symbol/keyFor/arg-non-symbol.js index 90d81c34fd..6408e62800 100644 --- a/test/built-ins/Symbol/keyFor/arg-non-symbol.js +++ b/test/built-ins/Symbol/keyFor/arg-non-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.keyfor -es6id: 19.4.2.5 description: Called with a non-symbol argument info: | 1. If Type(sym) is not Symbol, throw a TypeError exception. diff --git a/test/built-ins/Symbol/keyFor/arg-symbol-registry-hit.js b/test/built-ins/Symbol/keyFor/arg-symbol-registry-hit.js index 75fad66f0d..60d1f89f42 100644 --- a/test/built-ins/Symbol/keyFor/arg-symbol-registry-hit.js +++ b/test/built-ins/Symbol/keyFor/arg-symbol-registry-hit.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.keyfor -es6id: 19.4.2.5 description: Called with Symbol value that exists in the global symbol registry info: | 1. If Type(sym) is not Symbol, throw a TypeError exception. diff --git a/test/built-ins/Symbol/keyFor/arg-symbol-registry-miss.js b/test/built-ins/Symbol/keyFor/arg-symbol-registry-miss.js index 591f6678e0..9fe8183195 100644 --- a/test/built-ins/Symbol/keyFor/arg-symbol-registry-miss.js +++ b/test/built-ins/Symbol/keyFor/arg-symbol-registry-miss.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.keyfor -es6id: 19.4.2.5 description: > Called with Symbol value that does not exist in the global symbol registry info: | diff --git a/test/built-ins/Symbol/keyFor/cross-realm.js b/test/built-ins/Symbol/keyFor/cross-realm.js index 964e901203..2c31fbb398 100644 --- a/test/built-ins/Symbol/keyFor/cross-realm.js +++ b/test/built-ins/Symbol/keyFor/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.keyfor -es6id: 19.4.2.5 description: Global symbol registry is shared by all realms info: | The GlobalSymbolRegistry is a List that is globally available. It is shared diff --git a/test/built-ins/Symbol/keyFor/prop-desc.js b/test/built-ins/Symbol/keyFor/prop-desc.js index f02202bb23..4d625dbc4a 100644 --- a/test/built-ins/Symbol/keyFor/prop-desc.js +++ b/test/built-ins/Symbol/keyFor/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.keyfor -es6id: 19.4.2.5 description: Property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Symbol/match/cross-realm.js b/test/built-ins/Symbol/match/cross-realm.js index ec62587c30..392f086b5e 100644 --- a/test/built-ins/Symbol/match/cross-realm.js +++ b/test/built-ins/Symbol/match/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.match -es6id: 19.4.2.6 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/prototype/constructor.js b/test/built-ins/Symbol/prototype/constructor.js index affa00f6cf..29cbfafc99 100644 --- a/test/built-ins/Symbol/prototype/constructor.js +++ b/test/built-ins/Symbol/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.constructor -es6id: 19.4.3.1 description: Property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Symbol/prototype/toString/prop-desc.js b/test/built-ins/Symbol/prototype/toString/prop-desc.js index 51fcf228d5..d7d6459b0e 100644 --- a/test/built-ins/Symbol/prototype/toString/prop-desc.js +++ b/test/built-ins/Symbol/prototype/toString/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.tostring -es6id: 19.4.3.2 description: Property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Symbol/prototype/toString/undefined.js b/test/built-ins/Symbol/prototype/toString/undefined.js index c2b2bc7434..dfd1632190 100644 --- a/test/built-ins/Symbol/prototype/toString/undefined.js +++ b/test/built-ins/Symbol/prototype/toString/undefined.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol-constructor -es6id: 19.4.1 description: The value "undefined" is reported as the empty string info: | 1. If NewTarget is not undefined, throw a TypeError exception. diff --git a/test/built-ins/Symbol/prototype/valueOf/prop-desc.js b/test/built-ins/Symbol/prototype/valueOf/prop-desc.js index b403d9fb0f..15f0296e59 100644 --- a/test/built-ins/Symbol/prototype/valueOf/prop-desc.js +++ b/test/built-ins/Symbol/prototype/valueOf/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.valueof -es6id: 19.4.3.3 description: Property descriptor info: | Every other data property described in clauses 18 through 26 and in Annex diff --git a/test/built-ins/Symbol/prototype/valueOf/this-val-non-obj.js b/test/built-ins/Symbol/prototype/valueOf/this-val-non-obj.js index 6e34b1b127..ef3b64bef6 100644 --- a/test/built-ins/Symbol/prototype/valueOf/this-val-non-obj.js +++ b/test/built-ins/Symbol/prototype/valueOf/this-val-non-obj.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.valueof -es6id: 19.4.3.3 description: Called on a value that is neither a Symbol nor an Object info: | 1. Let s be the this value. diff --git a/test/built-ins/Symbol/prototype/valueOf/this-val-obj-non-symbol.js b/test/built-ins/Symbol/prototype/valueOf/this-val-obj-non-symbol.js index 0719734232..5ae3b64ce7 100644 --- a/test/built-ins/Symbol/prototype/valueOf/this-val-obj-non-symbol.js +++ b/test/built-ins/Symbol/prototype/valueOf/this-val-obj-non-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.valueof -es6id: 19.4.3.3 description: Called on an Object value that is not a Symbol object info: | 1. Let s be the this value. diff --git a/test/built-ins/Symbol/prototype/valueOf/this-val-obj-symbol.js b/test/built-ins/Symbol/prototype/valueOf/this-val-obj-symbol.js index 965b6e5ab5..751ad5ec27 100644 --- a/test/built-ins/Symbol/prototype/valueOf/this-val-obj-symbol.js +++ b/test/built-ins/Symbol/prototype/valueOf/this-val-obj-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.valueof -es6id: 19.4.3.3 description: Called on a Symbol Object value info: | 1. Let s be the this value. diff --git a/test/built-ins/Symbol/prototype/valueOf/this-val-symbol.js b/test/built-ins/Symbol/prototype/valueOf/this-val-symbol.js index 9fd0a94b4a..0cbf5aba2f 100644 --- a/test/built-ins/Symbol/prototype/valueOf/this-val-symbol.js +++ b/test/built-ins/Symbol/prototype/valueOf/this-val-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.prototype.valueof -es6id: 19.4.3.3 description: Called on a Symbol value info: | 1. Let s be the this value. diff --git a/test/built-ins/Symbol/replace/cross-realm.js b/test/built-ins/Symbol/replace/cross-realm.js index e2e40b7833..c5bbdaff10 100644 --- a/test/built-ins/Symbol/replace/cross-realm.js +++ b/test/built-ins/Symbol/replace/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.replace -es6id: 19.4.2.8 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/search/cross-realm.js b/test/built-ins/Symbol/search/cross-realm.js index f8ac5c8cb7..15cfa04180 100644 --- a/test/built-ins/Symbol/search/cross-realm.js +++ b/test/built-ins/Symbol/search/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.search -es6id: 19.4.2.9 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/species/cross-realm.js b/test/built-ins/Symbol/species/cross-realm.js index 53f46cd8ff..42af191981 100644 --- a/test/built-ins/Symbol/species/cross-realm.js +++ b/test/built-ins/Symbol/species/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.species -es6id: 19.4.2.10 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/split/cross-realm.js b/test/built-ins/Symbol/split/cross-realm.js index f48fab922d..63575d2ec7 100644 --- a/test/built-ins/Symbol/split/cross-realm.js +++ b/test/built-ins/Symbol/split/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.split -es6id: 19.4.2.11 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/toPrimitive/cross-realm.js b/test/built-ins/Symbol/toPrimitive/cross-realm.js index 8321be681b..90c912d920 100644 --- a/test/built-ins/Symbol/toPrimitive/cross-realm.js +++ b/test/built-ins/Symbol/toPrimitive/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.toprimitive -es6id: 19.4.2.12 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/toStringTag/cross-realm.js b/test/built-ins/Symbol/toStringTag/cross-realm.js index c4377db2d3..dc0bb5017d 100644 --- a/test/built-ins/Symbol/toStringTag/cross-realm.js +++ b/test/built-ins/Symbol/toStringTag/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.tostringtag -es6id: 19.4.2.13 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/Symbol/uniqueness.js b/test/built-ins/Symbol/uniqueness.js index bfca22f6b4..83a35ad092 100644 --- a/test/built-ins/Symbol/uniqueness.js +++ b/test/built-ins/Symbol/uniqueness.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol-constructor -es6id: 19.4.1 description: The Symbol constructor returns a unique value info: | 1. If NewTarget is not undefined, throw a TypeError exception. diff --git a/test/built-ins/Symbol/unscopables/cross-realm.js b/test/built-ins/Symbol/unscopables/cross-realm.js index 5dee332e0f..e99d11d128 100644 --- a/test/built-ins/Symbol/unscopables/cross-realm.js +++ b/test/built-ins/Symbol/unscopables/cross-realm.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-symbol.unscopables -es6id: 19.4.2.14 description: Value shared by all realms info: | Unless otherwise specified, well-known symbols values are shared by all diff --git a/test/built-ins/TypedArray/prototype/keys/BigInt/iter-prototype.js b/test/built-ins/TypedArray/prototype/keys/BigInt/iter-prototype.js index c8e5f11d85..8d0e517a1d 100644 --- a/test/built-ins/TypedArray/prototype/keys/BigInt/iter-prototype.js +++ b/test/built-ins/TypedArray/prototype/keys/BigInt/iter-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.16 esid: sec-%typedarray%.prototype.keys description: > The prototype of the returned iterator is ArrayIteratorPrototype diff --git a/test/built-ins/TypedArray/prototype/keys/BigInt/return-itor.js b/test/built-ins/TypedArray/prototype/keys/BigInt/return-itor.js index 6bccf1c2dc..4fd8f285bd 100644 --- a/test/built-ins/TypedArray/prototype/keys/BigInt/return-itor.js +++ b/test/built-ins/TypedArray/prototype/keys/BigInt/return-itor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.16 esid: sec-%typedarray%.prototype.keys description: Return an iterator for the keys. info: | diff --git a/test/built-ins/TypedArray/prototype/keys/iter-prototype.js b/test/built-ins/TypedArray/prototype/keys/iter-prototype.js index fd5509ac62..3d24bee39d 100644 --- a/test/built-ins/TypedArray/prototype/keys/iter-prototype.js +++ b/test/built-ins/TypedArray/prototype/keys/iter-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.16 esid: sec-%typedarray%.prototype.keys description: > The prototype of the returned iterator is ArrayIteratorPrototype diff --git a/test/built-ins/TypedArray/prototype/keys/return-itor.js b/test/built-ins/TypedArray/prototype/keys/return-itor.js index f496130b63..eff526da88 100644 --- a/test/built-ins/TypedArray/prototype/keys/return-itor.js +++ b/test/built-ins/TypedArray/prototype/keys/return-itor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.16 esid: sec-%typedarray%.prototype.keys description: Return an iterator for the keys. info: | diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/iter-prototype.js b/test/built-ins/TypedArray/prototype/values/BigInt/iter-prototype.js index 607aa0256a..3232e8e7fc 100644 --- a/test/built-ins/TypedArray/prototype/values/BigInt/iter-prototype.js +++ b/test/built-ins/TypedArray/prototype/values/BigInt/iter-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.30 esid: sec-%typedarray%.prototype.values description: > The prototype of the returned iterator is ArrayIteratorPrototype diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/return-itor.js b/test/built-ins/TypedArray/prototype/values/BigInt/return-itor.js index 3924cb3b42..48307c393d 100644 --- a/test/built-ins/TypedArray/prototype/values/BigInt/return-itor.js +++ b/test/built-ins/TypedArray/prototype/values/BigInt/return-itor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.30 esid: sec-%typedarray%.prototype.values description: Return an iterator for the values. info: | diff --git a/test/built-ins/TypedArray/prototype/values/iter-prototype.js b/test/built-ins/TypedArray/prototype/values/iter-prototype.js index df764e0027..9bb874faf9 100644 --- a/test/built-ins/TypedArray/prototype/values/iter-prototype.js +++ b/test/built-ins/TypedArray/prototype/values/iter-prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.30 esid: sec-%typedarray%.prototype.values description: > The prototype of the returned iterator is ArrayIteratorPrototype diff --git a/test/built-ins/TypedArray/prototype/values/return-itor.js b/test/built-ins/TypedArray/prototype/values/return-itor.js index b1f3c2d50f..4302356389 100644 --- a/test/built-ins/TypedArray/prototype/values/return-itor.js +++ b/test/built-ins/TypedArray/prototype/values/return-itor.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.3.30 esid: sec-%typedarray%.prototype.values description: Return an iterator for the values. info: | diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Float32Array/BYTES_PER_ELEMENT.js index 1c4d2a6d3c..90629809d1 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Float32Array.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/constructor.js b/test/built-ins/TypedArrayConstructors/Float32Array/constructor.js index e42589108a..911485a8a1 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Float32Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/name.js b/test/built-ins/TypedArrayConstructors/Float32Array/name.js index 06b6b69301..a7b0c3fa88 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Float32Array.name is "Float32Array". diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/proto.js b/test/built-ins/TypedArrayConstructors/Float32Array/proto.js index f3c60aaba9..c0df40d4b2 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Float32Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/prototype.js b/test/built-ins/TypedArrayConstructors/Float32Array/prototype.js index 0a19304e1a..790ef15848 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Float32Array.prototype is the Float32Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/BYTES_PER_ELEMENT.js index ad23cfab25..bc6789c7e7 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Float32Array.prototype.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/constructor.js index 109c2056d3..43319daaf4 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Float32Array.prototype.constructor is the Float32Array object. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/not-typedarray-object.js index 11411192d4..9973bff532 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Float64Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/proto.js index 2e66577a81..e036dbfaf8 100644 --- a/test/built-ins/TypedArrayConstructors/Float32Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Float32Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Float32Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Float64Array/BYTES_PER_ELEMENT.js index d293ee0e7c..0a91018b6d 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Float64Array.BYTES_PER_ELEMENT is 8. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/constructor.js b/test/built-ins/TypedArrayConstructors/Float64Array/constructor.js index 6e5c959265..bceaa411cf 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Float64Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/name.js b/test/built-ins/TypedArrayConstructors/Float64Array/name.js index c1633a7c28..a95bf2635a 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Float64Array.name is "Float64Array". diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/proto.js b/test/built-ins/TypedArrayConstructors/Float64Array/proto.js index e6a8eefd99..b5cc758d52 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Float64Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/prototype.js b/test/built-ins/TypedArrayConstructors/Float64Array/prototype.js index f12d6dc570..dd60821e45 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Float64Array.prototype is the Float64Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/BYTES_PER_ELEMENT.js index 559bd9b4f8..4be0bcd318 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Float64Array.prototype.BYTES_PER_ELEMENT is 8. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/constructor.js index a991e6b1c0..ef65f8bb21 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Float64Array.prototype.constructor is the Float64Array object. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/not-typedarray-object.js index 11411192d4..9973bff532 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Float64Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/proto.js index 12599812af..1d0a10c86d 100644 --- a/test/built-ins/TypedArrayConstructors/Float64Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Float64Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Float64Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int16Array/BYTES_PER_ELEMENT.js index 9e053e0d42..9e62659d87 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Int16Array.BYTES_PER_ELEMENT is 2. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/constructor.js b/test/built-ins/TypedArrayConstructors/Int16Array/constructor.js index 4498302d85..8a3cffd482 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Int16Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/name.js b/test/built-ins/TypedArrayConstructors/Int16Array/name.js index 1e1c6e017d..95aefeb91e 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Int16Array.name is "Int16Array". diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/proto.js b/test/built-ins/TypedArrayConstructors/Int16Array/proto.js index 6aa2a2fcfd..6713e414dd 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Int16Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/prototype.js b/test/built-ins/TypedArrayConstructors/Int16Array/prototype.js index 3549313f4a..69b5a84d5a 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Int16Array.prototype is the Int16Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/BYTES_PER_ELEMENT.js index b3d6506638..9a64969dc2 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Int16Array.prototype.BYTES_PER_ELEMENT is 2. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/constructor.js index a589031579..4d6aeacbc5 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Int16Array.prototype.constructor is the Int16Array object. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/not-typedarray-object.js index 0fcecc39b4..03d776969c 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Int16Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/proto.js index 832471d259..701fdf003e 100644 --- a/test/built-ins/TypedArrayConstructors/Int16Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int16Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Int16Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int32Array/BYTES_PER_ELEMENT.js index 8109567f66..700bbb6d63 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Int32Array.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/constructor.js b/test/built-ins/TypedArrayConstructors/Int32Array/constructor.js index c21794d065..98693a2ebc 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Int32Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/name.js b/test/built-ins/TypedArrayConstructors/Int32Array/name.js index 5e7ce33d1e..b3b1205859 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Int32Array.name is "Int32Array". diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/proto.js b/test/built-ins/TypedArrayConstructors/Int32Array/proto.js index 256116f343..ebd899983b 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Int32Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/prototype.js b/test/built-ins/TypedArrayConstructors/Int32Array/prototype.js index b40519b825..e7d5993263 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Int32Array.prototype is the Int32Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/BYTES_PER_ELEMENT.js index 62fe3505d6..4cfb8c5448 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Int32Array.prototype.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/constructor.js index cc335e1c1d..f66f3b19a4 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Int32Array.prototype.constructor is the Int32Array object. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/not-typedarray-object.js index 7076ef853e..bc78b6596d 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Int32Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js index 1e29b8f6c3..9b77407006 100644 --- a/test/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Int32Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int8Array/BYTES_PER_ELEMENT.js index 9e7c0a1961..495b43513e 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Int8Array.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/constructor.js b/test/built-ins/TypedArrayConstructors/Int8Array/constructor.js index a166cfa4f7..d0480b6289 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Int8Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/name.js b/test/built-ins/TypedArrayConstructors/Int8Array/name.js index 41cbab8aa5..5b7d448877 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Int8Array.name is "Int8Array". diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/proto.js b/test/built-ins/TypedArrayConstructors/Int8Array/proto.js index a58d1452ce..fbdd5f744c 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Int8Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/prototype.js b/test/built-ins/TypedArrayConstructors/Int8Array/prototype.js index 214082ec4d..29e7d6a720 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Int8Array.prototype is the Int8Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/BYTES_PER_ELEMENT.js index 7a20856141..6cc1c77aab 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Int8Array.prototype.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/constructor.js index 914474fb7f..158502f787 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Int8Array.prototype.constructor is the Int8Array object. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/not-typedarray-object.js index 14472ad8de..6cd1abb29d 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Int8Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/proto.js index 4491272100..fcba8431e8 100644 --- a/test/built-ins/TypedArrayConstructors/Int8Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Int8Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Int8Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint16Array/BYTES_PER_ELEMENT.js index c0b79f3419..1a929a80b7 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Uint16Array.BYTES_PER_ELEMENT is 2. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/constructor.js b/test/built-ins/TypedArrayConstructors/Uint16Array/constructor.js index 7b02e272a6..91c4358577 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Uint16Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/name.js b/test/built-ins/TypedArrayConstructors/Uint16Array/name.js index 9d39f94d16..0c6bde68fd 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Uint16Array.name is "Uint16Array". diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/proto.js b/test/built-ins/TypedArrayConstructors/Uint16Array/proto.js index 7632162956..0945dcf608 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Uint16Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype.js b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype.js index 33e77c2c1b..3f2329dcb0 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Uint16Array.prototype is the Uint16Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/BYTES_PER_ELEMENT.js index 7feb311ec6..48c744a541 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Uint16Array.prototype.BYTES_PER_ELEMENT is 2. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/constructor.js index 5d7e33fb6e..69be5cde7e 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Uint16Array.prototype.constructor is the Uint16Array object. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/not-typedarray-object.js index 595591043a..c92c7d400a 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Uint16Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/proto.js index 64b9fc55d6..6f9a05b13c 100644 --- a/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint16Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Uint16Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint32Array/BYTES_PER_ELEMENT.js index 986f9ba09c..d819a82c4a 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Uint32Array.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/constructor.js b/test/built-ins/TypedArrayConstructors/Uint32Array/constructor.js index 5d4385a14c..2e4e43c6be 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Uint32Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/name.js b/test/built-ins/TypedArrayConstructors/Uint32Array/name.js index 8bef4ebb46..4525a1a352 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Uint32Array.name is "Uint32Array". diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/proto.js b/test/built-ins/TypedArrayConstructors/Uint32Array/proto.js index 585b65201a..2483c39df4 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Uint32Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype.js b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype.js index 8f42cfa424..61b0b1e369 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Uint32Array.prototype is the Uint32Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/BYTES_PER_ELEMENT.js index ec2c6958d1..cd3005c1e5 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-typedarray.prototype.bytes_per_element description: > The initial value of Uint32Array.prototype.BYTES_PER_ELEMENT is 4. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/constructor.js index 7017fdbc95..d58361c0df 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Uint32Array.prototype.constructor is the Uint32Array object. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/not-typedarray-object.js index b3bc4b3a9e..efedefddc5 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Uint32Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/proto.js index 30c2589f77..dcb33dfb7d 100644 --- a/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint32Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Uint32Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint8Array/BYTES_PER_ELEMENT.js index d1a45b344b..4e7d6a2a21 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Uint8Array.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/constructor.js b/test/built-ins/TypedArrayConstructors/Uint8Array/constructor.js index d15b76332a..e1dd478e0c 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Uint8Array is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/name.js b/test/built-ins/TypedArrayConstructors/Uint8Array/name.js index fd54dabf8e..527c75893c 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/name.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Uint8Array.name is "Uint8Array". diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/proto.js b/test/built-ins/TypedArrayConstructors/Uint8Array/proto.js index c0d77bbc79..14d1539e41 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Uint8Array is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype.js b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype.js index 69a1175ab2..db9bf083f5 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Uint8Array.prototype is the Uint8Array prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/BYTES_PER_ELEMENT.js index 109033c267..e1309afa08 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-properties-of-typedarray-prototype-objects description: > The initial value of Uint8Array.prototype.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/constructor.js index 50fd39c71b..2b610b16dc 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Uint8Array.prototype.constructor is the Uint8Array object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/not-typedarray-object.js index c59b0f6561..c8eff84440 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Uint8Array.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/proto.js index 93cd53c30c..957773367e 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint8Array/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Uint8Array.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/BYTES_PER_ELEMENT.js index 4585d04701..6e58477227 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.1 esid: sec-typedarray.bytes_per_element description: > The initial value of Uint8ClampedArray.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/constructor.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/constructor.js index 1f41a4e12b..877078be63 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.4 esid: sec-typedarray-constructors description: > Uint8ClampedArray is a constructor function. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/name.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/name.js index d5dbb80211..1d13b77d25 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/name.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > Uint8ClampedArray.name is "Uint8ClampedArray". diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/proto.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/proto.js index 7f1c903dac..a712badeb9 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5 esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Uint8ClampedArray is %TypedArray%. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype.js index a3217b0a9c..d67986426a 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.5.2 esid: sec-typedarray.prototype description: > The initial value of Uint8ClampedArray.prototype is the Uint8ClampedArray prototype object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/BYTES_PER_ELEMENT.js index d7c3a99953..bf2526ddea 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/BYTES_PER_ELEMENT.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/BYTES_PER_ELEMENT.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.1 esid: sec-properties-of-typedarray-prototype-objects description: > The initial value of Uint8ClampedArray.prototype.BYTES_PER_ELEMENT is 1. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/constructor.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/constructor.js index dd8c53542e..b90ce98456 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/constructor.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/constructor.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6.2 esid: sec-typedarray.prototype.constructor description: > The initial value of Uint8ClampedArray.prototype.constructor is the Uint8ClampedArray object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/not-typedarray-object.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/not-typedarray-object.js index b67a0a0624..244a0ba529 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/not-typedarray-object.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/not-typedarray-object.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > Uint8ClampedArray.prototype is not a TypedArray instance object. diff --git a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/proto.js b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/proto.js index a5b7127e84..fdd5002b8a 100644 --- a/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/proto.js +++ b/test/built-ins/TypedArrayConstructors/Uint8ClampedArray/prototype/proto.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.6 esid: sec-properties-of-typedarray-prototype-objects description: > The prototype of Uint8ClampedArray.prototype is %TypedArrayPrototype%. diff --git a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-other-instance.js b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-other-instance.js index b2102fe1b2..6b945f530e 100644 --- a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-other-instance.js +++ b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-other-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.1 esid: sec-%typedarray%.from description: > Custom constructor can return any TypedArray instance with higher or same diff --git a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js index 2726aac565..f44ff8f7ef 100644 --- a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js +++ b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.1 esid: sec-%typedarray%.from description: > Throws a TypeError if a custom `this` returns a smaller instance diff --git a/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js b/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js index 8a01176822..1a6075b897 100644 --- a/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js +++ b/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.1 esid: sec-%typedarray%.from description: > Custom constructor can return any TypedArray instance with higher or same diff --git a/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-smaller-instance-throws.js b/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-smaller-instance-throws.js index ada4c3f7d9..e7c791c664 100644 --- a/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-smaller-instance-throws.js +++ b/test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-smaller-instance-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.1 esid: sec-%typedarray%.from description: > Throws a TypeError if a custom `this` returns a smaller instance diff --git a/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-other-instance.js b/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-other-instance.js index a2a61ce629..0137233954 100644 --- a/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-other-instance.js +++ b/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-other-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > Custom constructor can return any TypedArray instance with higher or same diff --git a/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-smaller-instance-throws.js b/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-smaller-instance-throws.js index f174540ef0..001f102d0c 100644 --- a/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-smaller-instance-throws.js +++ b/test/built-ins/TypedArrayConstructors/of/BigInt/custom-ctor-returns-smaller-instance-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > Throws a TypeError if a custom `this` returns a smaller instance diff --git a/test/built-ins/TypedArrayConstructors/of/BigInt/invoked-as-func.js b/test/built-ins/TypedArrayConstructors/of/BigInt/invoked-as-func.js index 98f6026836..05d1a841f8 100644 --- a/test/built-ins/TypedArrayConstructors/of/BigInt/invoked-as-func.js +++ b/test/built-ins/TypedArrayConstructors/of/BigInt/invoked-as-func.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > "of" cannot be invoked as a function diff --git a/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js b/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js index e116b1db7e..b479d6df3b 100644 --- a/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js +++ b/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > Custom constructor can return any TypedArray instance with higher or same diff --git a/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-smaller-instance-throws.js b/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-smaller-instance-throws.js index 0179d479bb..93e669d028 100644 --- a/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-smaller-instance-throws.js +++ b/test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-smaller-instance-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > Throws a TypeError if a custom `this` returns a smaller instance diff --git a/test/built-ins/TypedArrayConstructors/of/invoked-as-func.js b/test/built-ins/TypedArrayConstructors/of/invoked-as-func.js index 382bf1cd9d..261d47e104 100644 --- a/test/built-ins/TypedArrayConstructors/of/invoked-as-func.js +++ b/test/built-ins/TypedArrayConstructors/of/invoked-as-func.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 22.2.2.2 esid: sec-%typedarray%.of description: > "of" cannot be invoked as a function diff --git a/test/built-ins/WeakMap/constructor.js b/test/built-ins/WeakMap/constructor.js index 12ca92b01c..8fe8fb1f95 100644 --- a/test/built-ins/WeakMap/constructor.js +++ b/test/built-ins/WeakMap/constructor.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1 esid: sec-weakmap-constructor description: > The WeakMap constructor is the %WeakMap% intrinsic object and the initial diff --git a/test/built-ins/WeakMap/empty-iterable.js b/test/built-ins/WeakMap/empty-iterable.js index faceaf6d43..b2c790325a 100644 --- a/test/built-ins/WeakMap/empty-iterable.js +++ b/test/built-ins/WeakMap/empty-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > If the iterable argument is empty, return new WeakMap object. diff --git a/test/built-ins/WeakMap/get-set-method-failure.js b/test/built-ins/WeakMap/get-set-method-failure.js index ed6a58dc17..bf13d2e134 100644 --- a/test/built-ins/WeakMap/get-set-method-failure.js +++ b/test/built-ins/WeakMap/get-set-method-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Return abrupt after getting `set` method. diff --git a/test/built-ins/WeakMap/iterable-failure.js b/test/built-ins/WeakMap/iterable-failure.js index 438d7f32c1..193968ffb7 100644 --- a/test/built-ins/WeakMap/iterable-failure.js +++ b/test/built-ins/WeakMap/iterable-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > If the iterable argument is undefined, return new WeakMap object. diff --git a/test/built-ins/WeakMap/iterable.js b/test/built-ins/WeakMap/iterable.js index 4125eee93e..2954ebef15 100644 --- a/test/built-ins/WeakMap/iterable.js +++ b/test/built-ins/WeakMap/iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Returns the new WeakMap adding the objects from the iterable parameter. diff --git a/test/built-ins/WeakMap/iterator-close-after-set-failure.js b/test/built-ins/WeakMap/iterator-close-after-set-failure.js index 57a0d05d5e..7fb53848c8 100644 --- a/test/built-ins/WeakMap/iterator-close-after-set-failure.js +++ b/test/built-ins/WeakMap/iterator-close-after-set-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Return IteratorClose(iter, status) if fail on adding value on constructing. diff --git a/test/built-ins/WeakMap/iterator-item-first-entry-returns-abrupt.js b/test/built-ins/WeakMap/iterator-item-first-entry-returns-abrupt.js index d44531d397..a03ff8704e 100644 --- a/test/built-ins/WeakMap/iterator-item-first-entry-returns-abrupt.js +++ b/test/built-ins/WeakMap/iterator-item-first-entry-returns-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Closes iterator if item first entry completes abruptly. diff --git a/test/built-ins/WeakMap/iterator-item-second-entry-returns-abrupt.js b/test/built-ins/WeakMap/iterator-item-second-entry-returns-abrupt.js index 080d6b5383..60a1a0fe46 100644 --- a/test/built-ins/WeakMap/iterator-item-second-entry-returns-abrupt.js +++ b/test/built-ins/WeakMap/iterator-item-second-entry-returns-abrupt.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Closes iterator if item second entry completes abruptly. diff --git a/test/built-ins/WeakMap/iterator-items-are-not-object-close-iterator.js b/test/built-ins/WeakMap/iterator-items-are-not-object-close-iterator.js index bc8c4d0590..121c0ce76f 100644 --- a/test/built-ins/WeakMap/iterator-items-are-not-object-close-iterator.js +++ b/test/built-ins/WeakMap/iterator-items-are-not-object-close-iterator.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Closes the iterator object after not object error on next item. diff --git a/test/built-ins/WeakMap/iterator-items-are-not-object.js b/test/built-ins/WeakMap/iterator-items-are-not-object.js index 5cb3959d59..631d507fff 100644 --- a/test/built-ins/WeakMap/iterator-items-are-not-object.js +++ b/test/built-ins/WeakMap/iterator-items-are-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Throws a TypeError if iterable itens are not Objects. diff --git a/test/built-ins/WeakMap/iterator-next-failure.js b/test/built-ins/WeakMap/iterator-next-failure.js index 30f7850377..487508fd40 100644 --- a/test/built-ins/WeakMap/iterator-next-failure.js +++ b/test/built-ins/WeakMap/iterator-next-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Return abrupt from next iterator step. diff --git a/test/built-ins/WeakMap/iterator-value-failure.js b/test/built-ins/WeakMap/iterator-value-failure.js index 9ebeef9050..07e426b40d 100644 --- a/test/built-ins/WeakMap/iterator-value-failure.js +++ b/test/built-ins/WeakMap/iterator-value-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > If the iterable argument is empty, return new WeakMap object. diff --git a/test/built-ins/WeakMap/length.js b/test/built-ins/WeakMap/length.js index 1cfe69bbd0..51df6941c3 100644 --- a/test/built-ins/WeakMap/length.js +++ b/test/built-ins/WeakMap/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.2 esid: sec-properties-of-the-weakmap-constructor description: > The length property of the WeakMap constructor is 0. diff --git a/test/built-ins/WeakMap/name.js b/test/built-ins/WeakMap/name.js index baa4d1014a..05da1b73fc 100644 --- a/test/built-ins/WeakMap/name.js +++ b/test/built-ins/WeakMap/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > WeakMap ( [ iterable ] ) diff --git a/test/built-ins/WeakMap/no-iterable.js b/test/built-ins/WeakMap/no-iterable.js index 4b5bf187e0..8b72152225 100644 --- a/test/built-ins/WeakMap/no-iterable.js +++ b/test/built-ins/WeakMap/no-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > If the iterable argument is undefined, return new WeakMap object. diff --git a/test/built-ins/WeakMap/properties-of-map-instances.js b/test/built-ins/WeakMap/properties-of-map-instances.js index e9d40fa229..851d5e4bf5 100644 --- a/test/built-ins/WeakMap/properties-of-map-instances.js +++ b/test/built-ins/WeakMap/properties-of-map-instances.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.4 esid: sec-properties-of-weakmap-instances description: > WeakMap instances are ordinary objects that inherit properties from the diff --git a/test/built-ins/WeakMap/properties-of-the-weakmap-prototype-object.js b/test/built-ins/WeakMap/properties-of-the-weakmap-prototype-object.js index f3829f9cc5..4c2e2fff63 100644 --- a/test/built-ins/WeakMap/properties-of-the-weakmap-prototype-object.js +++ b/test/built-ins/WeakMap/properties-of-the-weakmap-prototype-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3 esid: sec-properties-of-the-weakmap-prototype-object description: > The WeakMap.prototype's prototype is Object.prototype. diff --git a/test/built-ins/WeakMap/proto-from-ctor-realm.js b/test/built-ins/WeakMap/proto-from-ctor-realm.js index e37b4201b6..8e2be72cab 100644 --- a/test/built-ins/WeakMap/proto-from-ctor-realm.js +++ b/test/built-ins/WeakMap/proto-from-ctor-realm.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: Default [[Prototype]] value derived from realm of the newTarget info: | diff --git a/test/built-ins/WeakMap/prototype-of-weakmap.js b/test/built-ins/WeakMap/prototype-of-weakmap.js index deeaa1f27e..62d7337dec 100644 --- a/test/built-ins/WeakMap/prototype-of-weakmap.js +++ b/test/built-ins/WeakMap/prototype-of-weakmap.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.2 esid: sec-properties-of-the-weakmap-constructor description: > The value of the [[Prototype]] internal slot of the WeakMap constructor is the diff --git a/test/built-ins/WeakMap/prototype/Symbol.toStringTag.js b/test/built-ins/WeakMap/prototype/Symbol.toStringTag.js index 562e75e907..43cadc7892 100644 --- a/test/built-ins/WeakMap/prototype/Symbol.toStringTag.js +++ b/test/built-ins/WeakMap/prototype/Symbol.toStringTag.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.6 esid: sec-weakmap.prototype-@@tostringtag description: > `Symbol.toStringTag` property descriptor diff --git a/test/built-ins/WeakMap/prototype/constructor.js b/test/built-ins/WeakMap/prototype/constructor.js index 38703e3b9d..921184afb9 100644 --- a/test/built-ins/WeakMap/prototype/constructor.js +++ b/test/built-ins/WeakMap/prototype/constructor.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.1 esid: sec-weakmap.prototype.constructor description: > WeakMap.prototype.constructor value and property descriptor diff --git a/test/built-ins/WeakMap/prototype/delete/delete-entry-initial-iterable.js b/test/built-ins/WeakMap/prototype/delete/delete-entry-initial-iterable.js index 1927f697b8..de3e604608 100644 --- a/test/built-ins/WeakMap/prototype/delete/delete-entry-initial-iterable.js +++ b/test/built-ins/WeakMap/prototype/delete/delete-entry-initial-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Delete an entry from initial iterable. diff --git a/test/built-ins/WeakMap/prototype/delete/delete-entry.js b/test/built-ins/WeakMap/prototype/delete/delete-entry.js index dbf166b85f..c33c644591 100644 --- a/test/built-ins/WeakMap/prototype/delete/delete-entry.js +++ b/test/built-ins/WeakMap/prototype/delete/delete-entry.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Delete an entry. diff --git a/test/built-ins/WeakMap/prototype/delete/delete.js b/test/built-ins/WeakMap/prototype/delete/delete.js index f77d83d27a..3d4d4626fd 100644 --- a/test/built-ins/WeakMap/prototype/delete/delete.js +++ b/test/built-ins/WeakMap/prototype/delete/delete.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > WeakMap.prototype.delete property descriptor diff --git a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-array.js b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-array.js index b04d747dee..366523524e 100644 --- a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-array.js +++ b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-map.js b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-map.js index b73fd0a5cb..4991d6eae4 100644 --- a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-map.js +++ b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-object.js b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-object.js index 878227627e..e75f473486 100644 --- a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-object.js +++ b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-set.js b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-set.js index d344d51d3c..8f17aec44c 100644 --- a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-set.js +++ b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js index de5373b8b1..04360a6e19 100644 --- a/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js +++ b/test/built-ins/WeakMap/prototype/delete/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/delete/length.js b/test/built-ins/WeakMap/prototype/delete/length.js index 1ebc63745f..12bfafbd69 100644 --- a/test/built-ins/WeakMap/prototype/delete/length.js +++ b/test/built-ins/WeakMap/prototype/delete/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > WeakMap.prototype.delete.length value and writability. diff --git a/test/built-ins/WeakMap/prototype/delete/name.js b/test/built-ins/WeakMap/prototype/delete/name.js index 32925c61ef..81d7982830 100644 --- a/test/built-ins/WeakMap/prototype/delete/name.js +++ b/test/built-ins/WeakMap/prototype/delete/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > WeakMap.prototype.delete.name value and writability. diff --git a/test/built-ins/WeakMap/prototype/delete/returns-false-value-is-not-object.js b/test/built-ins/WeakMap/prototype/delete/returns-false-value-is-not-object.js index 1637899c43..cb0e97466b 100644 --- a/test/built-ins/WeakMap/prototype/delete/returns-false-value-is-not-object.js +++ b/test/built-ins/WeakMap/prototype/delete/returns-false-value-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Return false if value is not an Object. diff --git a/test/built-ins/WeakMap/prototype/delete/returns-false-when-delete-is-noop.js b/test/built-ins/WeakMap/prototype/delete/returns-false-when-delete-is-noop.js index 77dad5d633..907fb651f7 100644 --- a/test/built-ins/WeakMap/prototype/delete/returns-false-when-delete-is-noop.js +++ b/test/built-ins/WeakMap/prototype/delete/returns-false-when-delete-is-noop.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: > Return false if entry is not in the WeakMap. diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-boolean.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-boolean.js index 5a0fd7c4b6..53b6b07b64 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-null.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-null.js index 1a535ea525..56bf7f4cb4 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-null.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-number.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-number.js index d7c5dbbea3..048cee434a 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-number.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-string.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-string.js index b187a3234e..d22cfb09ca 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-string.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-symbol.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-symbol.js index 7fe52324bc..5fe0420ba5 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-undefined.js b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-undefined.js index fafd6908c8..82d482d1bd 100644 --- a/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakMap/prototype/delete/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.2 esid: sec-weakmap.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-map.js b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-map.js index 04f086a298..ceefea6f3d 100644 --- a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-map.js +++ b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Throws a TypeError if `this` is a Map object. diff --git a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-set.js b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-set.js index 7d88159d47..49beba9fa3 100644 --- a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-set.js +++ b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Throws a TypeError if `this` is a Set object. diff --git a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot.js b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot.js index 5f2330a525..814c26b6ed 100644 --- a/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot.js +++ b/test/built-ins/WeakMap/prototype/get/does-not-have-weakmapdata-internal-slot.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Throws a TypeError if `this` does not have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/get/get.js b/test/built-ins/WeakMap/prototype/get/get.js index 3041044984..4c75098c6c 100644 --- a/test/built-ins/WeakMap/prototype/get/get.js +++ b/test/built-ins/WeakMap/prototype/get/get.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Property type and descriptor. diff --git a/test/built-ins/WeakMap/prototype/get/length.js b/test/built-ins/WeakMap/prototype/get/length.js index 93c7763b64..3813ef9c2c 100644 --- a/test/built-ins/WeakMap/prototype/get/length.js +++ b/test/built-ins/WeakMap/prototype/get/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > WeakMap.prototype.get.length value and descriptor. diff --git a/test/built-ins/WeakMap/prototype/get/name.js b/test/built-ins/WeakMap/prototype/get/name.js index 81077ff785..5b27eee5a6 100644 --- a/test/built-ins/WeakMap/prototype/get/name.js +++ b/test/built-ins/WeakMap/prototype/get/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > WeakMap.prototype.get.name value and descriptor. diff --git a/test/built-ins/WeakMap/prototype/get/returns-undefined-key-is-not-object.js b/test/built-ins/WeakMap/prototype/get/returns-undefined-key-is-not-object.js index 2ba4b052b6..23ad9eb87d 100644 --- a/test/built-ins/WeakMap/prototype/get/returns-undefined-key-is-not-object.js +++ b/test/built-ins/WeakMap/prototype/get/returns-undefined-key-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Returns undefined when key is not an Object. diff --git a/test/built-ins/WeakMap/prototype/get/returns-undefined.js b/test/built-ins/WeakMap/prototype/get/returns-undefined.js index 76d7ef16df..cad1c52fe1 100644 --- a/test/built-ins/WeakMap/prototype/get/returns-undefined.js +++ b/test/built-ins/WeakMap/prototype/get/returns-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Returns undefined when key is not on the WeakMap object. diff --git a/test/built-ins/WeakMap/prototype/get/returns-value.js b/test/built-ins/WeakMap/prototype/get/returns-value.js index 47990a97db..2a786a0ce1 100644 --- a/test/built-ins/WeakMap/prototype/get/returns-value.js +++ b/test/built-ins/WeakMap/prototype/get/returns-value.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Returns the value from the specified key diff --git a/test/built-ins/WeakMap/prototype/get/this-not-object-throw.js b/test/built-ins/WeakMap/prototype/get/this-not-object-throw.js index afb130486b..4d54a32ff4 100644 --- a/test/built-ins/WeakMap/prototype/get/this-not-object-throw.js +++ b/test/built-ins/WeakMap/prototype/get/this-not-object-throw.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.3 esid: sec-weakmap.prototype.get description: > Throws a TypeError if `this` value is not an Object. diff --git a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-array.js b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-array.js index 875ed40806..9d4f19857e 100644 --- a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-array.js +++ b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-map.js b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-map.js index 3a499e162c..de0acbbd7b 100644 --- a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-map.js +++ b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-object.js b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-object.js index 87a91f8c5e..bbc28151fa 100644 --- a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-object.js +++ b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-set.js b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-set.js index 3657712c40..3706e955e7 100644 --- a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-set.js +++ b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js index 7dc585210c..045d10c7cf 100644 --- a/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js +++ b/test/built-ins/WeakMap/prototype/has/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/has/has.js b/test/built-ins/WeakMap/prototype/has/has.js index cf30ea7a46..2116eec7c1 100644 --- a/test/built-ins/WeakMap/prototype/has/has.js +++ b/test/built-ins/WeakMap/prototype/has/has.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > WeakMap.prototype.has property descriptor diff --git a/test/built-ins/WeakMap/prototype/has/length.js b/test/built-ins/WeakMap/prototype/has/length.js index 3726d79823..44e7e3ddbf 100644 --- a/test/built-ins/WeakMap/prototype/has/length.js +++ b/test/built-ins/WeakMap/prototype/has/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > WeakMap.prototype.has.length value and writability. diff --git a/test/built-ins/WeakMap/prototype/has/name.js b/test/built-ins/WeakMap/prototype/has/name.js index 8473e2ada9..37aceefc60 100644 --- a/test/built-ins/WeakMap/prototype/has/name.js +++ b/test/built-ins/WeakMap/prototype/has/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > WeakMap.prototype.has.name value and writability. diff --git a/test/built-ins/WeakMap/prototype/has/returns-false-when-value-is-not-object.js b/test/built-ins/WeakMap/prototype/has/returns-false-when-value-is-not-object.js index 27d89e1031..bd8eccb405 100644 --- a/test/built-ins/WeakMap/prototype/has/returns-false-when-value-is-not-object.js +++ b/test/built-ins/WeakMap/prototype/has/returns-false-when-value-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Returns false if value is not an Object. diff --git a/test/built-ins/WeakMap/prototype/has/returns-false-when-value-not-present.js b/test/built-ins/WeakMap/prototype/has/returns-false-when-value-not-present.js index a8b53cab59..76bbf40e69 100644 --- a/test/built-ins/WeakMap/prototype/has/returns-false-when-value-not-present.js +++ b/test/built-ins/WeakMap/prototype/has/returns-false-when-value-not-present.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Return false when value is not present in the WeakMap entries. diff --git a/test/built-ins/WeakMap/prototype/has/returns-true-when-value-present.js b/test/built-ins/WeakMap/prototype/has/returns-true-when-value-present.js index b41591abb6..5068f21f5e 100644 --- a/test/built-ins/WeakMap/prototype/has/returns-true-when-value-present.js +++ b/test/built-ins/WeakMap/prototype/has/returns-true-when-value-present.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: > Returns true when value is present in the WeakMap entries list. diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-boolean.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-boolean.js index 5fe5b97418..0a13684796 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-null.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-null.js index 390987afd4..8b7f3c7f0d 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-null.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-number.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-number.js index 7f8867b9f6..d4af12ca00 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-number.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-string.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-string.js index 7f4bbc3e44..85e476efea 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-string.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-symbol.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-symbol.js index 48a142aa9f..bc605c5b90 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-undefined.js b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-undefined.js index 270a968281..7bce0030dc 100644 --- a/test/built-ins/WeakMap/prototype/has/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakMap/prototype/has/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.4 esid: sec-weakmap.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/prototype-attributes.js b/test/built-ins/WeakMap/prototype/prototype-attributes.js index 5d2670ccdf..2af181b289 100644 --- a/test/built-ins/WeakMap/prototype/prototype-attributes.js +++ b/test/built-ins/WeakMap/prototype/prototype-attributes.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.2.1 esid: sec-weakmap.prototype description: > WeakMap.prototype is not writable, not enumerable and not configurable. diff --git a/test/built-ins/WeakMap/prototype/set/adds-element.js b/test/built-ins/WeakMap/prototype/set/adds-element.js index 3d50426f46..f3ad9a65b5 100644 --- a/test/built-ins/WeakMap/prototype/set/adds-element.js +++ b/test/built-ins/WeakMap/prototype/set/adds-element.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Appends value as the last element of entries. diff --git a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-array.js b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-array.js index bee41d5d19..172da7f17d 100644 --- a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-array.js +++ b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-map.js b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-map.js index 05ed00aaac..2357fe4dff 100644 --- a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-map.js +++ b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-object.js b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-object.js index fd0f6297e2..00d47f1732 100644 --- a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-object.js +++ b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-set.js b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-set.js index e6ccdccf7f..c312fa44ea 100644 --- a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-set.js +++ b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js index e4503e1a49..8c80db7cae 100644 --- a/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js +++ b/test/built-ins/WeakMap/prototype/set/does-not-have-weakmapdata-internal-slot-weakmap-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: > Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot. diff --git a/test/built-ins/WeakMap/prototype/set/key-not-object-throw.js b/test/built-ins/WeakMap/prototype/set/key-not-object-throw.js index 96c343a9ad..2da994c1ed 100644 --- a/test/built-ins/WeakMap/prototype/set/key-not-object-throw.js +++ b/test/built-ins/WeakMap/prototype/set/key-not-object-throw.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `key` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/length.js b/test/built-ins/WeakMap/prototype/set/length.js index 6851251ddb..bbb729d8cc 100644 --- a/test/built-ins/WeakMap/prototype/set/length.js +++ b/test/built-ins/WeakMap/prototype/set/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: WeakMap.prototype.set.length descriptor info: | diff --git a/test/built-ins/WeakMap/prototype/set/name.js b/test/built-ins/WeakMap/prototype/set/name.js index 91065e94f6..ba923e33e6 100644 --- a/test/built-ins/WeakMap/prototype/set/name.js +++ b/test/built-ins/WeakMap/prototype/set/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: WeakMap.prototype.set.name descriptor info: | diff --git a/test/built-ins/WeakMap/prototype/set/returns-this-when-ignoring-duplicate.js b/test/built-ins/WeakMap/prototype/set/returns-this-when-ignoring-duplicate.js index e4eea01298..3bc5e86049 100644 --- a/test/built-ins/WeakMap/prototype/set/returns-this-when-ignoring-duplicate.js +++ b/test/built-ins/WeakMap/prototype/set/returns-this-when-ignoring-duplicate.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Returns `this` when new value is duplicate. info: | diff --git a/test/built-ins/WeakMap/prototype/set/returns-this.js b/test/built-ins/WeakMap/prototype/set/returns-this.js index 8760d8964c..431a03a111 100644 --- a/test/built-ins/WeakMap/prototype/set/returns-this.js +++ b/test/built-ins/WeakMap/prototype/set/returns-this.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Returns `this` after setting a new value. info: | diff --git a/test/built-ins/WeakMap/prototype/set/set.js b/test/built-ins/WeakMap/prototype/set/set.js index f0b43d8989..4c732db022 100644 --- a/test/built-ins/WeakMap/prototype/set/set.js +++ b/test/built-ins/WeakMap/prototype/set/set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: WeakMap.prototype.set property descriptor info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-boolean.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-boolean.js index c4bb8e17c1..f8ebd2e139 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-null.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-null.js index 83beb7e351..bdba73a14a 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-null.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-number.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-number.js index 36d65f59c8..9312745cef 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-number.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-string.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-string.js index ae692ab227..af548a8b58 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-string.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-symbol.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-symbol.js index ad43dc2a78..b308942969 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-undefined.js b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-undefined.js index b6468b2b78..54bba8808d 100644 --- a/test/built-ins/WeakMap/prototype/set/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakMap/prototype/set/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.3.5 esid: sec-weakmap.prototype.set description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakMap/set-not-callable-throws.js b/test/built-ins/WeakMap/set-not-callable-throws.js index 7a157dae0a..5acbf08628 100644 --- a/test/built-ins/WeakMap/set-not-callable-throws.js +++ b/test/built-ins/WeakMap/set-not-callable-throws.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Throws TypeError if add is not callable on constructor call. diff --git a/test/built-ins/WeakMap/undefined-newtarget.js b/test/built-ins/WeakMap/undefined-newtarget.js index aa0ffd688f..31c5b2e3f9 100644 --- a/test/built-ins/WeakMap/undefined-newtarget.js +++ b/test/built-ins/WeakMap/undefined-newtarget.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > Throws a TypeError if NewTarget is undefined. diff --git a/test/built-ins/WeakMap/weakmap.js b/test/built-ins/WeakMap/weakmap.js index 898f83436e..2767370623 100644 --- a/test/built-ins/WeakMap/weakmap.js +++ b/test/built-ins/WeakMap/weakmap.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.3.1.1 esid: sec-weakmap-iterable description: > WeakMap ( [ iterable ] ) diff --git a/test/built-ins/WeakSet/add-not-callable-throws.js b/test/built-ins/WeakSet/add-not-callable-throws.js index 1c8b423a92..eeebacbdcf 100644 --- a/test/built-ins/WeakSet/add-not-callable-throws.js +++ b/test/built-ins/WeakSet/add-not-callable-throws.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > Throws TypeError if add is not callable on constructor call. diff --git a/test/built-ins/WeakSet/constructor.js b/test/built-ins/WeakSet/constructor.js index a35a14f273..ef236b9a00 100644 --- a/test/built-ins/WeakSet/constructor.js +++ b/test/built-ins/WeakSet/constructor.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1 esid: sec-weakset-constructor description: > The WeakSet constructor is the %WeakSet% intrinsic object and the initial diff --git a/test/built-ins/WeakSet/empty-iterable.js b/test/built-ins/WeakSet/empty-iterable.js index f13c75d757..ebce057262 100644 --- a/test/built-ins/WeakSet/empty-iterable.js +++ b/test/built-ins/WeakSet/empty-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > If the iterable argument is empty, return new Weakset object. diff --git a/test/built-ins/WeakSet/get-add-method-failure.js b/test/built-ins/WeakSet/get-add-method-failure.js index da1b1117d1..ee5cae6387 100644 --- a/test/built-ins/WeakSet/get-add-method-failure.js +++ b/test/built-ins/WeakSet/get-add-method-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > Return abrupt after getting `add` method. diff --git a/test/built-ins/WeakSet/iterable-failure.js b/test/built-ins/WeakSet/iterable-failure.js index d8292106fa..4788bb8b5f 100644 --- a/test/built-ins/WeakSet/iterable-failure.js +++ b/test/built-ins/WeakSet/iterable-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > If the iterable argument is undefined, return new Weakset object. diff --git a/test/built-ins/WeakSet/iterable.js b/test/built-ins/WeakSet/iterable.js index edcaecb90c..e232678cd2 100644 --- a/test/built-ins/WeakSet/iterable.js +++ b/test/built-ins/WeakSet/iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > Returns the new WeakSet adding the objects from the iterable parameter. diff --git a/test/built-ins/WeakSet/iterator-close-after-add-failure.js b/test/built-ins/WeakSet/iterator-close-after-add-failure.js index fed192c8ce..3e722506d3 100644 --- a/test/built-ins/WeakSet/iterator-close-after-add-failure.js +++ b/test/built-ins/WeakSet/iterator-close-after-add-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > Return IteratorClose(iter, status) if fail on adding value on constructing. diff --git a/test/built-ins/WeakSet/iterator-next-failure.js b/test/built-ins/WeakSet/iterator-next-failure.js index 83f51d9e5d..9e4aeba164 100644 --- a/test/built-ins/WeakSet/iterator-next-failure.js +++ b/test/built-ins/WeakSet/iterator-next-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > Return abrupt from next iterator step. diff --git a/test/built-ins/WeakSet/iterator-value-failure.js b/test/built-ins/WeakSet/iterator-value-failure.js index 97eeb30008..2e491d0781 100644 --- a/test/built-ins/WeakSet/iterator-value-failure.js +++ b/test/built-ins/WeakSet/iterator-value-failure.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > If the iterable argument is empty, return new Weakset object. diff --git a/test/built-ins/WeakSet/length.js b/test/built-ins/WeakSet/length.js index 1be33732d0..02011e0fad 100644 --- a/test/built-ins/WeakSet/length.js +++ b/test/built-ins/WeakSet/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.2 esid: sec-properties-of-the-weakset-constructor description: > The length property of the WeakSet constructor is 0. diff --git a/test/built-ins/WeakSet/name.js b/test/built-ins/WeakSet/name.js index 1fbaa84092..cd884f941d 100644 --- a/test/built-ins/WeakSet/name.js +++ b/test/built-ins/WeakSet/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > WeakSet ( [ iterable ] ) diff --git a/test/built-ins/WeakSet/no-iterable.js b/test/built-ins/WeakSet/no-iterable.js index 6ab24ff926..68e4166bd0 100644 --- a/test/built-ins/WeakSet/no-iterable.js +++ b/test/built-ins/WeakSet/no-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > If the iterable argument is undefined, return new Weakset object. diff --git a/test/built-ins/WeakSet/properties-of-the-weakset-prototype-object.js b/test/built-ins/WeakSet/properties-of-the-weakset-prototype-object.js index 98216bc4a9..99d32f2e18 100644 --- a/test/built-ins/WeakSet/properties-of-the-weakset-prototype-object.js +++ b/test/built-ins/WeakSet/properties-of-the-weakset-prototype-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3 esid: sec-properties-of-the-weakset-prototype-object description: > The WeakSet.prototype's prototype is Object.prototype. diff --git a/test/built-ins/WeakSet/proto-from-ctor-realm.js b/test/built-ins/WeakSet/proto-from-ctor-realm.js index 8764e4a89b..3d3abab5f7 100644 --- a/test/built-ins/WeakSet/proto-from-ctor-realm.js +++ b/test/built-ins/WeakSet/proto-from-ctor-realm.js @@ -1,7 +1,6 @@ // Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: Default [[Prototype]] value derived from realm of the newTarget info: | diff --git a/test/built-ins/WeakSet/prototype-of-weakset.js b/test/built-ins/WeakSet/prototype-of-weakset.js index c91af1d44a..03d85c2e26 100644 --- a/test/built-ins/WeakSet/prototype-of-weakset.js +++ b/test/built-ins/WeakSet/prototype-of-weakset.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.2 esid: sec-properties-of-the-weakset-constructor description: > The value of the [[Prototype]] internal slot of the WeakSet constructor diff --git a/test/built-ins/WeakSet/prototype/Symbol.toStringTag.js b/test/built-ins/WeakSet/prototype/Symbol.toStringTag.js index 76ba79aa35..0643f1aa86 100644 --- a/test/built-ins/WeakSet/prototype/Symbol.toStringTag.js +++ b/test/built-ins/WeakSet/prototype/Symbol.toStringTag.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.5 esid: sec-weakset.prototype-@@tostringtag description: > `Symbol.toStringTag` property descriptor diff --git a/test/built-ins/WeakSet/prototype/add/add.js b/test/built-ins/WeakSet/prototype/add/add.js index cf638897ca..a016c8df0c 100644 --- a/test/built-ins/WeakSet/prototype/add/add.js +++ b/test/built-ins/WeakSet/prototype/add/add.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: WeakSet.prototype.add property descriptor info: | diff --git a/test/built-ins/WeakSet/prototype/add/adds-element.js b/test/built-ins/WeakSet/prototype/add/adds-element.js index 38be1afd0e..b91f1bd30e 100644 --- a/test/built-ins/WeakSet/prototype/add/adds-element.js +++ b/test/built-ins/WeakSet/prototype/add/adds-element.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Appends value as the last element of entries. diff --git a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-array.js b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-array.js index 29e2433a84..8f373f8524 100644 --- a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-array.js +++ b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-map.js b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-map.js index 8e94ab1144..2bdd40b4a2 100644 --- a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-map.js +++ b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-object.js b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-object.js index e2ecba5037..622af4cebb 100644 --- a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-object.js +++ b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-set.js b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-set.js index 0eb17d522d..3e4ac9cc80 100644 --- a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-set.js +++ b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-weakset-prototype.js b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-weakset-prototype.js index 5613c3bc53..7ea05d4afb 100644 --- a/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-weakset-prototype.js +++ b/test/built-ins/WeakSet/prototype/add/does-not-have-weaksetdata-internal-slot-weakset-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/add/length.js b/test/built-ins/WeakSet/prototype/add/length.js index 410bd635ab..39531659be 100644 --- a/test/built-ins/WeakSet/prototype/add/length.js +++ b/test/built-ins/WeakSet/prototype/add/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: WeakSet.prototype.add.length descriptor info: | diff --git a/test/built-ins/WeakSet/prototype/add/name.js b/test/built-ins/WeakSet/prototype/add/name.js index a8cb4c63e1..79e970f66e 100644 --- a/test/built-ins/WeakSet/prototype/add/name.js +++ b/test/built-ins/WeakSet/prototype/add/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: WeakSet.prototype.add.name descriptor info: | diff --git a/test/built-ins/WeakSet/prototype/add/returns-this-when-ignoring-duplicate.js b/test/built-ins/WeakSet/prototype/add/returns-this-when-ignoring-duplicate.js index f6c29426eb..54a16a5dba 100644 --- a/test/built-ins/WeakSet/prototype/add/returns-this-when-ignoring-duplicate.js +++ b/test/built-ins/WeakSet/prototype/add/returns-this-when-ignoring-duplicate.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Returns `this` when new value is duplicate. info: | diff --git a/test/built-ins/WeakSet/prototype/add/returns-this.js b/test/built-ins/WeakSet/prototype/add/returns-this.js index 7dc250fb5e..17c05b14d2 100644 --- a/test/built-ins/WeakSet/prototype/add/returns-this.js +++ b/test/built-ins/WeakSet/prototype/add/returns-this.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Returns `this` after adding a new value. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-boolean.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-boolean.js index b1239d405d..fddea8bff7 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-null.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-null.js index f5862479b7..e4690a53cd 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-null.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-number.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-number.js index 8f734e9fe4..b4faf09cff 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-number.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-string.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-string.js index 0000abf23f..3fc951290f 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-string.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-symbol.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-symbol.js index d153638def..4144e95267 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-undefined.js b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-undefined.js index a60f2caf21..44462b4e3a 100644 --- a/test/built-ins/WeakSet/prototype/add/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakSet/prototype/add/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/add/value-not-object-throw.js b/test/built-ins/WeakSet/prototype/add/value-not-object-throw.js index 7ebcb61d4a..e5766ad63e 100644 --- a/test/built-ins/WeakSet/prototype/add/value-not-object-throw.js +++ b/test/built-ins/WeakSet/prototype/add/value-not-object-throw.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1 esid: sec-weakset.prototype.add description: Throws TypeError if `value` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor-intrinsic.js b/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor-intrinsic.js index 6e42972003..e66898ecaf 100644 --- a/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor-intrinsic.js +++ b/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor-intrinsic.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.2 esid: sec-weakset.prototype.constructor description: > The initial value of WeakSet.prototype.constructor is the %WeakSet% diff --git a/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor.js b/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor.js index 5e5ce21d4d..a02b9e7452 100644 --- a/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor.js +++ b/test/built-ins/WeakSet/prototype/constructor/weakset-prototype-constructor.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.2 esid: sec-weakset.prototype.constructor description: > WeakSet.prototype.constructor property descriptor diff --git a/test/built-ins/WeakSet/prototype/delete/delete-entry-initial-iterable.js b/test/built-ins/WeakSet/prototype/delete/delete-entry-initial-iterable.js index 6b56fe740a..9ce7f4705b 100644 --- a/test/built-ins/WeakSet/prototype/delete/delete-entry-initial-iterable.js +++ b/test/built-ins/WeakSet/prototype/delete/delete-entry-initial-iterable.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Delete an entry from initial iterable. diff --git a/test/built-ins/WeakSet/prototype/delete/delete-entry.js b/test/built-ins/WeakSet/prototype/delete/delete-entry.js index 6cb4f1000d..891811324e 100644 --- a/test/built-ins/WeakSet/prototype/delete/delete-entry.js +++ b/test/built-ins/WeakSet/prototype/delete/delete-entry.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Delete an entry. diff --git a/test/built-ins/WeakSet/prototype/delete/delete.js b/test/built-ins/WeakSet/prototype/delete/delete.js index f866c6eb88..465edcfba4 100644 --- a/test/built-ins/WeakSet/prototype/delete/delete.js +++ b/test/built-ins/WeakSet/prototype/delete/delete.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > WeakSet.prototype.delete property descriptor diff --git a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-array.js b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-array.js index bcc819b699..7316bb4baf 100644 --- a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-array.js +++ b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-map.js b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-map.js index d6c2d9cbc6..bb8ac8e2ca 100644 --- a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-map.js +++ b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-object.js b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-object.js index d942e11947..3a14a93edb 100644 --- a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-object.js +++ b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-set.js b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-set.js index 2450848bc2..b8b677a95d 100644 --- a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-set.js +++ b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-weakset-prototype.js b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-weakset-prototype.js index 94d917b1db..420a7bd683 100644 --- a/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-weakset-prototype.js +++ b/test/built-ins/WeakSet/prototype/delete/does-not-have-weaksetdata-internal-slot-weakset-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/delete/length.js b/test/built-ins/WeakSet/prototype/delete/length.js index 2baabc9653..1efdf01e02 100644 --- a/test/built-ins/WeakSet/prototype/delete/length.js +++ b/test/built-ins/WeakSet/prototype/delete/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > WeakSet.prototype.delete.length value and writability. diff --git a/test/built-ins/WeakSet/prototype/delete/name.js b/test/built-ins/WeakSet/prototype/delete/name.js index c645403b50..15a494918d 100644 --- a/test/built-ins/WeakSet/prototype/delete/name.js +++ b/test/built-ins/WeakSet/prototype/delete/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > WeakSet.prototype.delete.name value and writability. diff --git a/test/built-ins/WeakSet/prototype/delete/returns-false-value-is-not-object.js b/test/built-ins/WeakSet/prototype/delete/returns-false-value-is-not-object.js index 7704aa5318..c9b24d94cc 100644 --- a/test/built-ins/WeakSet/prototype/delete/returns-false-value-is-not-object.js +++ b/test/built-ins/WeakSet/prototype/delete/returns-false-value-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Return false if value is not a non-null Object. diff --git a/test/built-ins/WeakSet/prototype/delete/returns-false-when-delete-is-noop.js b/test/built-ins/WeakSet/prototype/delete/returns-false-when-delete-is-noop.js index d742bc6dd3..52720ebbaa 100644 --- a/test/built-ins/WeakSet/prototype/delete/returns-false-when-delete-is-noop.js +++ b/test/built-ins/WeakSet/prototype/delete/returns-false-when-delete-is-noop.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: > Return false if entry wasn't in the WeakSet. diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-boolean.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-boolean.js index 8b71dc3646..d6ee591cf5 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-null.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-null.js index 57e6a891e3..75bc190171 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-null.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-number.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-number.js index 33a9d718cd..df9fb57321 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-number.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-string.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-string.js index 0abf46ab05..b5a21933db 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-string.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-symbol.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-symbol.js index 36da0acf74..8852432310 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-undefined.js b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-undefined.js index 5e5268084b..d58e15fa8c 100644 --- a/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakSet/prototype/delete/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.3 esid: sec-weakset.prototype.delete description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-array.js b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-array.js index d96b13ac20..c8faa4eb67 100644 --- a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-array.js +++ b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-array.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-map.js b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-map.js index 569710fc73..2efa532c9b 100644 --- a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-map.js +++ b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-map.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-object.js b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-object.js index 52fa6d87b5..1bf47eae6f 100644 --- a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-object.js +++ b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-set.js b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-set.js index 5dde2a6d17..32dbcbe231 100644 --- a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-set.js +++ b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-set.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-weakset-prototype.js b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-weakset-prototype.js index 9002598236..67b8668b10 100644 --- a/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-weakset-prototype.js +++ b/test/built-ins/WeakSet/prototype/has/does-not-have-weaksetdata-internal-slot-weakset-prototype.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Throws TypeError if context doesn't have a [[WeakSetData]] internal slot. diff --git a/test/built-ins/WeakSet/prototype/has/has.js b/test/built-ins/WeakSet/prototype/has/has.js index 05641991d3..56bf2097d8 100644 --- a/test/built-ins/WeakSet/prototype/has/has.js +++ b/test/built-ins/WeakSet/prototype/has/has.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > WeakSet.prototype.has property descriptor diff --git a/test/built-ins/WeakSet/prototype/has/length.js b/test/built-ins/WeakSet/prototype/has/length.js index a380d96fe3..dbd0138ebf 100644 --- a/test/built-ins/WeakSet/prototype/has/length.js +++ b/test/built-ins/WeakSet/prototype/has/length.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > WeakSet.prototype.has.length value and writability. diff --git a/test/built-ins/WeakSet/prototype/has/name.js b/test/built-ins/WeakSet/prototype/has/name.js index 02d62ea6e4..6feeea3742 100644 --- a/test/built-ins/WeakSet/prototype/has/name.js +++ b/test/built-ins/WeakSet/prototype/has/name.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > WeakSet.prototype.has.name value and writability. diff --git a/test/built-ins/WeakSet/prototype/has/returns-false-when-value-is-not-object.js b/test/built-ins/WeakSet/prototype/has/returns-false-when-value-is-not-object.js index a5229469a5..8d29b0aa2c 100644 --- a/test/built-ins/WeakSet/prototype/has/returns-false-when-value-is-not-object.js +++ b/test/built-ins/WeakSet/prototype/has/returns-false-when-value-is-not-object.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Returns false if value is not a non-null Object. diff --git a/test/built-ins/WeakSet/prototype/has/returns-false-when-value-not-present.js b/test/built-ins/WeakSet/prototype/has/returns-false-when-value-not-present.js index 87636a9290..84cffa530c 100644 --- a/test/built-ins/WeakSet/prototype/has/returns-false-when-value-not-present.js +++ b/test/built-ins/WeakSet/prototype/has/returns-false-when-value-not-present.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Return false when value is not present in the WeakSet entries. diff --git a/test/built-ins/WeakSet/prototype/has/returns-true-when-value-present.js b/test/built-ins/WeakSet/prototype/has/returns-true-when-value-present.js index 24ae21b73d..e76576bd44 100644 --- a/test/built-ins/WeakSet/prototype/has/returns-true-when-value-present.js +++ b/test/built-ins/WeakSet/prototype/has/returns-true-when-value-present.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: > Returns true when value is present in the WeakSet entries list. diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-boolean.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-boolean.js index 3eb1de419d..b203d67df2 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-boolean.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-boolean.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-null.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-null.js index e438a9c75c..503a2135ab 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-null.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-null.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-number.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-number.js index 21eab9e6a1..f2e44773fe 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-number.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-number.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-string.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-string.js index 026ce230f4..ad3f42a4dc 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-string.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-string.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-symbol.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-symbol.js index 851c61877e..c1580f8ccc 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-symbol.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-symbol.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-undefined.js b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-undefined.js index 84010b35d1..685df01094 100644 --- a/test/built-ins/WeakSet/prototype/has/this-not-object-throw-undefined.js +++ b/test/built-ins/WeakSet/prototype/has/this-not-object-throw-undefined.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.4 esid: sec-weakset.prototype.has description: Throws TypeError if `this` is not Object. info: | diff --git a/test/built-ins/WeakSet/prototype/prototype-attributes.js b/test/built-ins/WeakSet/prototype/prototype-attributes.js index 41aeac2959..2712492d4e 100644 --- a/test/built-ins/WeakSet/prototype/prototype-attributes.js +++ b/test/built-ins/WeakSet/prototype/prototype-attributes.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.2.1 esid: sec-weakset.prototype description: > WeakSet.prototype is not writable, not enumerable and not configurable. diff --git a/test/built-ins/WeakSet/symbol-disallowed-as-weakset-key.js b/test/built-ins/WeakSet/symbol-disallowed-as-weakset-key.js index c74175745a..c1addcf9d0 100644 --- a/test/built-ins/WeakSet/symbol-disallowed-as-weakset-key.js +++ b/test/built-ins/WeakSet/symbol-disallowed-as-weakset-key.js @@ -1,7 +1,6 @@ // Copyright (C) 2013 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.3.1_S2 esid: sec-weakset.prototype.add description: > Symbol may not be used as a WeakSet entry diff --git a/test/built-ins/WeakSet/undefined-newtarget.js b/test/built-ins/WeakSet/undefined-newtarget.js index eacb101f77..f5bead5f9c 100644 --- a/test/built-ins/WeakSet/undefined-newtarget.js +++ b/test/built-ins/WeakSet/undefined-newtarget.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > The WeakSet constructor is the %WeakSet% intrinsic object and the initial diff --git a/test/built-ins/WeakSet/weakset.js b/test/built-ins/WeakSet/weakset.js index 59dacb52ec..bce1dc3a86 100644 --- a/test/built-ins/WeakSet/weakset.js +++ b/test/built-ins/WeakSet/weakset.js @@ -1,7 +1,6 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.4.1.1 esid: sec-weakset-iterable description: > WeakSet ( [ iterable ] ) diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.10_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.10_T1.js index 02b1509466..f257edfed2 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.10_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.10_T1.js @@ -5,8 +5,6 @@ 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.11_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.11_T1.js index b11cdabb71..6fab82adb4 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.11_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.11_T1.js @@ -6,8 +6,6 @@ info: | If B = 1110xxxx (n = 3) and (string.charAt(k + 4) and 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 diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.11_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.11_T2.js index 255a1dca9c..e325f9124c 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.11_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.11_T2.js @@ -6,8 +6,6 @@ info: | If B = 1110xxxx (n = 3) and (string.charAt(k + 4) and 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 diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T1.js index 889fc0af66..45dd1001c3 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T1.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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 diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T2.js index fd94ab5083..aea5219be4 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T2.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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 diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T3.js index eb31462a1a..ff3e41b246 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.12_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.12_T3.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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 diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.13_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.13_T1.js index 51a4686f5e..71e3bdd518 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.13_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.13_T1.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.13_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.13_T2.js index 6f787b838d..05272c6327 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.13_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.13_T2.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T1.js index e61ba781c7..a4aafcbeed 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T1.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T2.js index a48c1c449c..7ec0ce3f9e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T2.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T3.js index 30555a5880..80065b0679 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T3.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T4.js b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T4.js index d36dbc17db..bf1277e3fd 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.14_T4.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.14_T4.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T1.js index 29dc5d5dbf..0341a55131 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T1.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T2.js index a469f4d3e5..7f0c3df138 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T2.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T3.js index 6f8d36b882..272a9969ea 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T3.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T4.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T4.js index db37cbc403..cc7f4aa82e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T4.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T4.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T5.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T5.js index 9f312d61cb..50b0132929 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T5.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T5.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T6.js b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T6.js index f784cbdfde..f6d94f2685 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.15_T6.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.15_T6.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.1_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.1_T1.js index 6905a38532..762ceec1d0 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.1_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.1_T1.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.2_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.2_T1.js index 1ce4897008..4ca86cdf40 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.2_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.2_T1.js @@ -5,8 +5,6 @@ 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.2_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.2_T2.js index 51f51fa45f..6b9dbbec48 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.2_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.2_T2.js @@ -5,8 +5,6 @@ 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.3_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.3_T1.js index 1b1dba7ec4..c2c8fa25ba 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.3_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.3_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.3_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.3_T2.js index c9914c50c2..3c4f2b0181 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.3_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.3_T2.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.4_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.4_T1.js index 6ca4f2d415..3201bc36c2 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.4_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.4_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.5_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.5_T1.js index 21a7aa0e70..729c5c78e0 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.5_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.5_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.6_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.6_T1.js index 7c7e35d073..829b7ca14c 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.6_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.6_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.7_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.7_T1.js index b4f1762568..c5a4a08a4a 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.7_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.7_T1.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.8_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.8_T1.js index c5d97dbac7..446b99010d 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.8_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.8_T1.js @@ -5,8 +5,6 @@ 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 "%" diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.8_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.8_T2.js index ff17a7aae3..866cc9d8ef 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.8_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.8_T2.js @@ -5,8 +5,6 @@ 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 "%" diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T1.js index bd60e8cf18..79d745fc62 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T1.js @@ -5,8 +5,6 @@ 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 "%" diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T2.js index eb69805a6d..d1f1ce8532 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T2.js @@ -5,8 +5,6 @@ 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 "%" diff --git a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T3.js index 59b0ab3b84..61ece159d1 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A1.9_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A1.9_T3.js @@ -5,8 +5,6 @@ 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 "%" diff --git a/test/built-ins/decodeURI/S15.1.3.1_A2.1_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A2.1_T1.js index 6423131402..1994b59ed9 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A2.1_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A2.1_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A2.2_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A2.2_T1.js index a609d01146..c7be56912e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A2.2_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A2.2_T1.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A2.3_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A2.3_T1.js index fff5c5fe66..362d5cb510 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A2.3_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A2.3_T1.js @@ -5,8 +5,6 @@ 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A2.4_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A2.4_T1.js index d2b675248d..9a2762f1ad 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A2.4_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A2.4_T1.js @@ -6,8 +6,6 @@ info: | If B1 = 1110xxxx ([0xE0 - 0xEF]), B2, B3 = 10xxxxxxx ([0x80 - 0xBF]), 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A2.5_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A2.5_T1.js index 406759b6b4..e0930ea8b6 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A2.5_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A2.5_T1.js @@ -6,8 +6,6 @@ info: | If B1 = 11110xxx ([0xF0 - 0x0F4]), B2, B3, B4 = 10xxxxxxx ([0x80 - 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A3_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A3_T1.js index 700ed50309..202b87ad71 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A3_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A3_T1.js @@ -5,8 +5,6 @@ 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] ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A3_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A3_T2.js index 4e50de9948..0ededb619c 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A3_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A3_T2.js @@ -5,8 +5,6 @@ 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] ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A3_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A3_T3.js index f5cee0011a..d686f8be02 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A3_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A3_T3.js @@ -5,8 +5,6 @@ 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A4_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A4_T1.js index d8bdf45cf4..28694571c9 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A4_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A4_T1.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.1_A4_T1 -es6id: 18.2.6.2 esid: sec-decodeuri-encodeduri description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A4_T2.js b/test/built-ins/decodeURI/S15.1.3.1_A4_T2.js index a26ed467e9..d35b24e35f 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A4_T2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A4_T2.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.1_A4_T2 -es6id: 18.2.6.2 esid: sec-decodeuri-encodeduri description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A4_T3.js b/test/built-ins/decodeURI/S15.1.3.1_A4_T3.js index 0944ffee86..fa4d67879e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A4_T3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A4_T3.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A4_T4.js b/test/built-ins/decodeURI/S15.1.3.1_A4_T4.js index ced956a032..251a495ba0 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A4_T4.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A4_T4.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.1_A4_T4 -es6id: 18.2.6.2 esid: sec-decodeuri-encodeduri description: Test some url ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.1.js b/test/built-ins/decodeURI/S15.1.3.1_A5.1.js index ccc2da7002..cc59fcaebd 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.1.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.2.js b/test/built-ins/decodeURI/S15.1.3.1_A5.2.js index c16dd48bb3..ea65e5112e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.2.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.2.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.3.js b/test/built-ins/decodeURI/S15.1.3.1_A5.3.js index 3e46c50ddd..51f3ff5523 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.3.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.3.js @@ -3,8 +3,6 @@ /*--- 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] diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.4.js b/test/built-ins/decodeURI/S15.1.3.1_A5.4.js index 0da5a16c81..b6e0138494 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.4.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.4.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.5.js b/test/built-ins/decodeURI/S15.1.3.1_A5.5.js index 3d64f22d1b..0164d7ea39 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.5.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.5.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.6.js b/test/built-ins/decodeURI/S15.1.3.1_A5.6.js index 285aeee3a9..50020b6ae2 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.6.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.6.js @@ -3,8 +3,6 @@ /*--- 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 ---*/ diff --git a/test/built-ins/decodeURI/S15.1.3.1_A5.7.js b/test/built-ins/decodeURI/S15.1.3.1_A5.7.js index f883620207..b5ac21b545 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A5.7.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A5.7.js @@ -3,8 +3,6 @@ /*--- 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, diff --git a/test/built-ins/decodeURI/S15.1.3.1_A6_T1.js b/test/built-ins/decodeURI/S15.1.3.1_A6_T1.js index 216de13497..b61fd7861e 100644 --- a/test/built-ins/decodeURI/S15.1.3.1_A6_T1.js +++ b/test/built-ins/decodeURI/S15.1.3.1_A6_T1.js @@ -3,8 +3,6 @@ /*--- 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) ---*/ diff --git a/test/built-ins/decodeURI/name.js b/test/built-ins/decodeURI/name.js index 458f3b7540..c682ae17cd 100644 --- a/test/built-ins/decodeURI/name.js +++ b/test/built-ins/decodeURI/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.6.2 esid: sec-decodeuri-encodeduri description: > decodeURI.name is "decodeURI". diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js index 214a7b6096..c99c80fa25 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js @@ -5,8 +5,6 @@ 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.2_A1.10_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T1.js index 6162984447..a7814c8d46 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T1.js @@ -6,8 +6,6 @@ info: | If B = 1110xxxx (n = 3) and (string.charAt(k + 4) and 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.2_A1.11_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests, string.charAt(k + 4) and string.charAt(k + 5) do diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2.js index 7df6bcc21e..6ea084e9f9 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2.js @@ -6,8 +6,6 @@ info: | If B = 1110xxxx (n = 3) and (string.charAt(k + 4) and 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.2_A1.11_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests, string.charAt(k + 7) and string.charAt(k + 8) do diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T1.js index 276274715a..eab56cdfa9 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T1.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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.2_A1.12_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests, string.charAt(k + 4) and string.charAt(k + 5) do diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2.js index 4f8407f4d3..f29c687db3 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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.2_A1.12_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests, string.charAt(k + 7) and string.charAt(k + 7) do diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3.js index 0beb3c6a1d..ae06bc7227 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3.js @@ -7,8 +7,6 @@ info: | string.charAt(k + 5)) or (string.charAt(k + 7) and 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.2_A1.12_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests, string.charAt(k + 10) and string.charAt(k + 11) do diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T1.js index 4d76c810c3..7d60d39a7f 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T1.js @@ -5,8 +5,6 @@ info: | If B = 110xxxxx (n = 2) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.13_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xC0 - 0xDF], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2.js index 1825c1fe8f..f50e3e857b 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2.js @@ -5,8 +5,6 @@ info: | If B = 110xxxxx (n = 2) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.13_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xC0 - 0xDF], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1.js index 5d0387d882..8481f342f5 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.14_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xE0 - 0xEF], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2.js index 6bec2d45dd..ef52e7daff 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.14_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xE0 - 0xEF], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T3.js index 7abcf94295..625a601e46 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T3.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.14_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xE0 - 0xEF], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T4.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T4.js index 889ca8b21e..21d6f007cd 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T4.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.14_T4.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.14_T4 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xE0 - 0xEF], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T1.js index a48ab0c908..7fc0656d25 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T1.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T2.js index 5ce90247af..0ee408d5c7 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T2.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T3.js index 8b456a9184..e65bdfa2f1 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T3.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0x00, 0x7F] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T4.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T4.js index fb68feab2c..6195135f89 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T4.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T4.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T4 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T5.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T5.js index b6a12f4c66..d0281bca7d 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T5.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T5.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T5 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T6.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T6.js index fc6a0c05ac..e799d4327f 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T6.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.15_T6.js @@ -5,8 +5,6 @@ info: | If B = 11110xxx (n = 4) and C != 10xxxxxx (C - first of octets after B), throw URIError -es5id: 15.1.3.2_A1.15_T6 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0x0F7], C = [0xC0, 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js index 8f7812a523..0de0f5848c 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) equal "%" and k + 2 >= string.length, throw URIError -es5id: 15.1.3.2_A1.1_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1.js index 9810339899..7d1cde7055 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1.js @@ -5,8 +5,6 @@ info: | If B = string.charAt(k+1) + string.charAt(k+2) do not represent hexadecimal digits, throw URIError -es5id: 15.1.3.2_A1.2_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2.js index 3663b448fd..02babd38aa 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2.js @@ -5,8 +5,6 @@ info: | If B = string.charAt(k+1) + string.charAt(k+2) do not represent hexadecimal digits, throw URIError -es5id: 15.1.3.2_A1.2_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T1.js index 182677d442..ed6b392594 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T1.js @@ -3,8 +3,6 @@ /*--- info: If B = 10xxxxxx or B = 11111xxx, throw URIError -es5id: 15.1.3.2_A1.3_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = 10xxxxxx -> B in [0x80 - 0xBF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T2.js index a9bc2157ea..adc1d6a1eb 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.3_T2.js @@ -3,8 +3,6 @@ /*--- info: If B = 10xxxxxx or B = 11111xxx, throw URIError -es5id: 15.1.3.2_A1.3_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = 11111xxx -> B in [0xF8 - 0xFF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.4_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.4_T1.js index 2d91c523fa..aeb20a9563 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.4_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.4_T1.js @@ -3,8 +3,6 @@ /*--- info: If B = 110xxxxx (n = 2) and (k + 2) + 3 >= length, throw URIError -es5id: 15.1.3.2_A1.4_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xC0 - 0xDF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.5_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.5_T1.js index 2bd11c744d..67002e5767 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.5_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.5_T1.js @@ -3,8 +3,6 @@ /*--- info: If B = 1110xxxx (n = 3) and (k + 2) + 6 >= length, throw URIError -es5id: 15.1.3.2_A1.5_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xE0 - 0xEF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.6_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.6_T1.js index 10d53f10bc..05489cdf4f 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.6_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.6_T1.js @@ -3,8 +3,6 @@ /*--- info: If B = 11110xxx (n = 4) and (k + 2) + 9 >= length, throw URIError -es5id: 15.1.3.2_A1.6_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xF0 - 0xF7] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.7_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.7_T1.js index 3428b96ada..16cec57dc4 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.7_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.7_T1.js @@ -5,8 +5,6 @@ info: | If B = 110xxxxx (n = 2) and string.charAt(k + 3) not equal "%", throw URIError -es5id: 15.1.3.2_A1.7_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests. B = [0xC0 - 0xDF] includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T1.js index d0d5df9838..de2908da0d 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T1.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and string.charAt(k + 3), string.charAt(k + 6) not equal "%", throw URIError -es5id: 15.1.3.2_A1.8_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests. B = [0xE0 - 0xEF], string.charAt(k + 3) not equal "%" diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T2.js index 5cc7abb7e1..76e1eacdeb 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.8_T2.js @@ -5,8 +5,6 @@ info: | If B = 1110xxxx (n = 3) and string.charAt(k + 3), string.charAt(k + 6) not equal "%", throw URIError -es5id: 15.1.3.2_A1.8_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests. B = [0xE0 - 0xEF], string.charAt(k + 6) not equal "%" diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T1.js index 71514a7967..9655d5565c 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T1.js @@ -5,8 +5,6 @@ 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.2_A1.9_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 3) not equal "%" diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T2.js index d91a77247f..c75640441e 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T2.js @@ -5,8 +5,6 @@ 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.2_A1.9_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 6) not equal "%" diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T3.js index 1c1f446b03..e69aaac1c8 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.9_T3.js @@ -5,8 +5,6 @@ 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.2_A1.9_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > Complex tests. B = [0xF0 - 0x0F7], string.charAt(k + 9) not equal "%" diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.1_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.1_T1.js index a84fa9b913..56b968b1a7 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.1_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) not equal "%", return this char -es5id: 15.1.3.2_A2.1_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.2_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.2_T1.js index 74bd1d8dd1..201375d1a1 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.2_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.2_T1.js @@ -3,8 +3,6 @@ /*--- info: If B1 = 0xxxxxxxx ([0x00 - 0x7F]), return B1 -es5id: 15.1.3.2_A2.2_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.3_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.3_T1.js index 0d5c3da067..b7e77b309f 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.3_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.3_T1.js @@ -5,8 +5,6 @@ info: | If B1 = 110xxxxx ([0xC0 - 0xDF]), B2 = 10xxxxxx ([0x80 - 0xBF), without B1 = [0xC0, 0xC1], return UTF8(B1, B2) -es5id: 15.1.3.2_A2.3_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1.js index 0590f653db..d4daa62eed 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1.js @@ -6,8 +6,6 @@ info: | If B1 = 1110xxxx ([0xE0 - 0xEF]), B2, B3 = 10xxxxxxx ([0x80 - 0xBF]), without [B1, B2] = [0xE0, 0x80 - 0x9F], [0xED, 0xA0 - 0xBF] (0xD800 - 0xDFFF), return UTF8(B1, B2, B3) -es5id: 15.1.3.2_A2.4_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1.js index dc87e7bf70..1802d11662 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1.js @@ -6,8 +6,6 @@ info: | If B1 = 11110xxx ([0xF0 - 0x0F4]), B2, B3, B4 = 10xxxxxxx ([0x80 - 0xBF]), without [B1, B2] = [0xF0, 0x80 - 0x9F], [0xF4, 0x90 - 0xBF], return UTF8(B1, B2, B3, B4) -es5id: 15.1.3.2_A2.5_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T1.js index 565cb55090..5b4e96249c 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T1.js @@ -3,8 +3,6 @@ /*--- info: Let reservedURIComponentSet be the empty string -es5id: 15.1.3.2_A3_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > uriReserved and "#" not in reservedURIComponentSet. HexDigit in diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T2.js index eb533e38c0..e83f2925d5 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T2.js @@ -3,8 +3,6 @@ /*--- info: Let reservedURIComponentSet be the empty string -es5id: 15.1.3.2_A3_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > uriReserved and "#" not in reservedURIComponentSet. HexDigit in diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T3.js index f79e27d576..2df2aaa9dd 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A3_T3.js @@ -3,8 +3,6 @@ /*--- info: Let reservedURIComponentSet be the empty string -es5id: 15.1.3.2_A3_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Complex test ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T1.js index 26f34d34a2..7ca95bb613 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T1.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.2_A4_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T2.js index b5fe1a6ce2..91e43becc0 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T2.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.2_A4_T2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T3.js index 52ffcca9cd..c34f968689 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T3.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.2_A4_T3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking URL with Line Terminator ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T4.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T4.js index 9ab470c164..8eb3b495e5 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T4.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A4_T4.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.2_A4_T4 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Test some url ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.1.js index e2412648c8..1e712e4a17 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.1.js @@ -3,8 +3,6 @@ /*--- info: The length property of decodeURIComponent has the attribute DontEnum -es5id: 15.1.3.2_A5.1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.2.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.2.js index 5fb255422e..6543490c78 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.2.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.2.js @@ -5,8 +5,6 @@ info: | The length property of decodeURIComponent does not have the attribute DontDelete -es5id: 15.1.3.2_A5.2 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.3.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.3.js index ee9fd6f306..44908aa7e5 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.3.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.3.js @@ -3,8 +3,6 @@ /*--- info: The length property of decodeURIComponent has the attribute ReadOnly -es5id: 15.1.3.2_A5.3 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.4.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.4.js index 99f993a491..7ff56bb8fe 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.4.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.4.js @@ -3,8 +3,6 @@ /*--- info: The length property of decodeURIComponent is 1 -es5id: 15.1.3.2_A5.4 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: decodeURIComponent.length === 1 ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.5.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.5.js index 376bff510e..339d062ca6 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.5.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.5.js @@ -3,8 +3,6 @@ /*--- info: The decodeURIComponent property has the attribute DontEnum -es5id: 15.1.3.2_A5.5 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.6.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.6.js index d70b3f79ca..f0bca3d0e0 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.6.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.6.js @@ -3,8 +3,6 @@ /*--- info: The decodeURIComponent property has not prototype property -es5id: 15.1.3.2_A5.6 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: Checking decodeURIComponent.prototype ---*/ diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.7.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.7.js index 65e434a0ae..9612bbbed8 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A5.7.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A5.7.js @@ -3,8 +3,6 @@ /*--- info: The decodeURIComponent property can't be used as constructor -es5id: 15.1.3.2_A5.7 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js index 5717f3f82b..3ef0372f62 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.3.2_A6_T1 -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: If Type(value) is Object, evaluate ToPrimitive(value, String) ---*/ diff --git a/test/built-ins/decodeURIComponent/name.js b/test/built-ins/decodeURIComponent/name.js index 42cb859ad4..f2dc4d8148 100644 --- a/test/built-ins/decodeURIComponent/name.js +++ b/test/built-ins/decodeURIComponent/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.6.3 esid: sec-decodeuricomponent-encodeduricomponent description: > decodeURIComponent.name is "decodeURIComponent". diff --git a/test/built-ins/encodeURI/S15.1.3.3_A1.1_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A1.1_T1.js index 05ce2adf38..a8c025184d 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A1.1_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A1.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.3_A1.1_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A1.1_T2.js b/test/built-ins/encodeURI/S15.1.3.3_A1.1_T2.js index 4e99844b9f..c7fabac76b 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A1.1_T2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A1.1_T2.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.3_A1.1_T2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A1.2_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A1.2_T1.js index d94273a1ac..2446a5d64b 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A1.2_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A1.2_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.length = k + 1, throw URIError -es5id: 15.1.3.3_A1.2_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A1.2_T2.js b/test/built-ins/encodeURI/S15.1.3.3_A1.2_T2.js index f10991faa6..e24563eaf1 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A1.2_T2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A1.2_T2.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.length = k + 1, throw URIError -es5id: 15.1.3.3_A1.2_T2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A1.3_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A1.3_T1.js index ae60a0124b..fbaa75f811 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A1.3_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A1.3_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) not in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.3_A1.3_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: > Complex tests, string.charAt(k+1) in [0x0000, 0xD7FF, 0xD800, diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.1_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A2.1_T1.js index adc6785814..c02b90486a 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.1_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.1_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0000 - 0x007F]\[uriReserved, uriUnescaped, #], return 1 octet (00000000 0zzzzzzz -> 0zzzzzzz) -es5id: 15.1.3.3_A2.1_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.2_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A2.2_T1.js index 7dfba59825..1ee2e3b2d3 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.2_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.2_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0080 - 0x07FF], return 2 octets (00000yyy yyzzzzzz -> 110yyyyy 10zzzzzz) -es5id: 15.1.3.3_A2.2_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.3_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A2.3_T1.js index 260a90ed06..1131c27c3d 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.3_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.3_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0800 - 0xD7FF], return 3 octets (xxxxyyyy yyzzzzzz -> 1110xxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.3_A2.3_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.4_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A2.4_T1.js index e998f504f3..6b9c8a716d 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.4_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.4_T1.js @@ -6,8 +6,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) in [0xDC00 � 0xDFFF], return 4 octets (000wwwxx xxxxyyyy yyzzzzzz -> 11110www 10xxxxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.3_A2.4_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: > Complex tests, use RFC 3629, string.charAt(k+1) in [0xDC00, diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.4_T2.js b/test/built-ins/encodeURI/S15.1.3.3_A2.4_T2.js index e7b01f8351..f1b403dcf8 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.4_T2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.4_T2.js @@ -6,8 +6,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) in [0xDC00 � 0xDFFF], return 4 octets (000wwwxx xxxxyyyy yyzzzzzz -> 11110www 10xxxxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.3_A2.4_T2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: > Complex tests, use RFC 3629, string.charAt(k) in [0xD800, 0xDBFF, diff --git a/test/built-ins/encodeURI/S15.1.3.3_A2.5_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A2.5_T1.js index ed90a134f4..7ea28a874c 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A2.5_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A2.5_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xE000 - 0xFFFF], return 3 octets (xxxxyyyy yyzzzzzz -> 1110xxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.3_A2.5_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A3.1_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A3.1_T1.js index f9c21e30f6..f5f3351739 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A3.1_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A3.1_T1.js @@ -5,8 +5,6 @@ info: | unescapedURISet containing one instance of each character valid in uriReserved -es5id: 15.1.3.3_A3.1_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Complex tests ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T1.js index 310902e884..1f0c5a1c53 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T1.js @@ -5,8 +5,6 @@ info: | unescapedURISet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.3_A3.2_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: "Complex tests, uriUnescaped :: uriAlpha" ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T2.js b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T2.js index 742afe3b98..77d359aad3 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T2.js @@ -5,8 +5,6 @@ info: | unescapedURISet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.3_A3.2_T2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: "Complex tests, uriUnescaped :: DecimalDigit" ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T3.js b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T3.js index 3c37227ffc..b08046a66c 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A3.2_T3.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A3.2_T3.js @@ -5,8 +5,6 @@ info: | unescapedURISet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.3_A3.2_T3 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: "Complex tests, uriUnescaped :: uriMark" ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A3.3_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A3.3_T1.js index 33b5626ad4..69db87ad1f 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A3.3_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A3.3_T1.js @@ -3,8 +3,6 @@ /*--- info: unescapedURISet containing "#" -es5id: 15.1.3.3_A3.3_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: encodeURI("#") === "#" ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A4_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A4_T1.js index 487d7157d6..e80c953aea 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A4_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A4_T1.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.3_A4_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A4_T2.js b/test/built-ins/encodeURI/S15.1.3.3_A4_T2.js index 74f36f388f..7e8fb7f2fa 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A4_T2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A4_T2.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.3_A4_T2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A4_T3.js b/test/built-ins/encodeURI/S15.1.3.3_A4_T3.js index 7f132cb32c..9029a692bb 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A4_T3.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A4_T3.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.3_A4_T3 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking URL with Line Terminator ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A4_T4.js b/test/built-ins/encodeURI/S15.1.3.3_A4_T4.js index f02b1a9033..b3733be7e3 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A4_T4.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A4_T4.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.3_A4_T4 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Test some url ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.1.js b/test/built-ins/encodeURI/S15.1.3.3_A5.1.js index 57fdbecfa7..0a363ecf0f 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.1.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURI has the attribute DontEnum -es5id: 15.1.3.3_A5.1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.2.js b/test/built-ins/encodeURI/S15.1.3.3_A5.2.js index adc662e8b3..cd7899afe3 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.2.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.2.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURI does not have the attribute DontDelete -es5id: 15.1.3.3_A5.2 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.3.js b/test/built-ins/encodeURI/S15.1.3.3_A5.3.js index 6338a6dcc0..7e14334b59 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.3.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.3.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURI has the attribute ReadOnly -es5id: 15.1.3.3_A5.3 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.4.js b/test/built-ins/encodeURI/S15.1.3.3_A5.4.js index 03a1595049..a7b11554a1 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.4.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.4.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURI is 1 -es5id: 15.1.3.3_A5.4 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: encodeURI.length === 1 ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.5.js b/test/built-ins/encodeURI/S15.1.3.3_A5.5.js index 196f9bab04..7e0a76f484 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.5.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.5.js @@ -3,8 +3,6 @@ /*--- info: The encodeURI property has the attribute DontEnum -es5id: 15.1.3.3_A5.5 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.6.js b/test/built-ins/encodeURI/S15.1.3.3_A5.6.js index ac30d03271..9358f48616 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.6.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.6.js @@ -3,8 +3,6 @@ /*--- info: The encodeURI property has not prototype property -es5id: 15.1.3.3_A5.6 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: Checking encodeURI.prototype ---*/ diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.7.js b/test/built-ins/encodeURI/S15.1.3.3_A5.7.js index 67eabf1e9f..e90178d2db 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A5.7.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A5.7.js @@ -3,8 +3,6 @@ /*--- info: The encodeURI property can't be used as constructor -es5id: 15.1.3.3_A5.7 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/encodeURI/S15.1.3.3_A6_T1.js b/test/built-ins/encodeURI/S15.1.3.3_A6_T1.js index bc7c7fc8e4..e44fb8b377 100644 --- a/test/built-ins/encodeURI/S15.1.3.3_A6_T1.js +++ b/test/built-ins/encodeURI/S15.1.3.3_A6_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.3.3_A6_T1 -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: If Type(value) is Object, evaluate ToPrimitive(value, String) ---*/ diff --git a/test/built-ins/encodeURI/name.js b/test/built-ins/encodeURI/name.js index fb9e55d912..5fb1c90787 100644 --- a/test/built-ins/encodeURI/name.js +++ b/test/built-ins/encodeURI/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.6.4 esid: sec-encodeuri-uri description: > encodeURI.name is "encodeURI". diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T1.js index 672a439a83..fbc6a16ca6 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.4_A1.1_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T2.js index 215987d2a9..051a0eb7d2 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.1_T2.js @@ -3,8 +3,6 @@ /*--- info: If string.charAt(k) in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.4_A1.1_T2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T1.js index e635bf1e31..30fbf39088 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.length = k + 1, throw URIError -es5id: 15.1.3.4_A1.2_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T2.js index ac2b460e39..5780486c10 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.2_T2.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.length = k + 1, throw URIError -es5id: 15.1.3.4_A1.2_T2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.3_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.3_T1.js index c278e813f9..c2fb51430b 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A1.3_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A1.3_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) not in [0xDC00 - 0xDFFF], throw URIError -es5id: 15.1.3.4_A1.3_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: > Complex tests, string.charAt(k+1) in [0x0000, 0xD7FF, 0xD800, diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.1_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.1_T1.js index 1920d60ae3..e3aa932752 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.1_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.1_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0000 - 0x007F]\[uriUnescaped], return 1 octet (00000000 0zzzzzzz -> 0zzzzzzz) -es5id: 15.1.3.4_A2.1_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.2_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.2_T1.js index beb7a06df2..8c62cec07c 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.2_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.2_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0080 - 0x07FF], return 2 octets (00000yyy yyzzzzzz -> 110yyyyy 10zzzzzz) -es5id: 15.1.3.4_A2.2_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1.js index d9b12a21b2..b11563e565 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0x0800 - 0xD7FF], return 3 octets (xxxxyyyy yyzzzzzz -> 1110xxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.4_A2.3_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T1.js index d7414fed0a..04c942ce47 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T1.js @@ -6,8 +6,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) in [0xDC00 � 0xDFFF], return 4 octets (000wwwxx xxxxyyyy yyzzzzzz -> 11110www 10xxxxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.4_A2.4_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: > Complex tests, use RFC 3629, string.charAt(k+1) in [0xDC00, diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T2.js index aae3f0befd..858528b153 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.4_T2.js @@ -6,8 +6,6 @@ info: | If string.charAt(k) in [0xD800 - 0xDBFF] and string.charAt(k+1) in [0xDC00 � 0xDFFF], return 4 octets (000wwwxx xxxxyyyy yyzzzzzz -> 11110www 10xxxxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.4_A2.4_T2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: > Complex tests, use RFC 3629, string.charAt(k) in [0xD800, 0xDBFF, diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.5_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.5_T1.js index 0d5421cac9..d4f021c90a 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A2.5_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A2.5_T1.js @@ -5,8 +5,6 @@ info: | If string.charAt(k) in [0xE000 - 0xFFFF], return 3 octets (xxxxyyyy yyzzzzzz -> 1110xxxx 10yyyyyy 10zzzzzz) -es5id: 15.1.3.4_A2.5_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests, use RFC 3629 includes: [decimalToHexString.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.1_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.1_T1.js index e0f378f59e..fb6bf75d8b 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.1_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.1_T1.js @@ -3,8 +3,6 @@ /*--- info: unescapedURIComponentSet not containing uriReserved -es5id: 15.1.3.4_A3.1_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Complex tests ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T1.js index f25d31c1c9..80f444d7c0 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T1.js @@ -5,8 +5,6 @@ info: | unescapedURIComponentSet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.4_A3.2_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: "Complex tests, uriUnescaped :: uriAlpha" ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T2.js index cb22185c42..89f4547096 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T2.js @@ -5,8 +5,6 @@ info: | unescapedURIComponentSet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.4_A3.2_T2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: "Complex tests, uriUnescaped :: DecimalDigit" ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T3.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T3.js index d5383472cb..d1257a4a5b 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T3.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.2_T3.js @@ -5,8 +5,6 @@ info: | unescapedURIComponentSet containing one instance of each character valid in uriUnescaped -es5id: 15.1.3.4_A3.2_T3 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: "Complex tests, uriUnescaped :: uriMark" ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.3_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.3_T1.js index 200b58e453..4773c6d3c4 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A3.3_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A3.3_T1.js @@ -3,8 +3,6 @@ /*--- info: unescapedURIComponentSet not containing "#" -es5id: 15.1.3.4_A3.3_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: encodeURIComponent("#") === "%23" ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T1.js index 14177a9cf9..dcb7c887df 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T1.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.4_A4_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking ENGLISH ALPHABET ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T2.js index 7793af689e..d46beac0ff 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T2.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.4_A4_T2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking RUSSIAN ALPHABET ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T3.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T3.js index 90125f3212..5cbb98fda3 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T3.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T3.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.4_A4_T3 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking URL with Line Terminator ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T4.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T4.js index 9f42dce3ef..d1a18115fc 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T4.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A4_T4.js @@ -3,8 +3,6 @@ /*--- info: URI tests -es5id: 15.1.3.4_A4_T4 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Test some url ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.1.js index 04fa7a5f2b..7b1283cf0c 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.1.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURIComponent has the attribute DontEnum -es5id: 15.1.3.4_A5.1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.2.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.2.js index 49b0560259..d703b50ab5 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.2.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.2.js @@ -5,8 +5,6 @@ info: | The length property of encodeURIComponent does not have the attribute DontDelete -es5id: 15.1.3.4_A5.2 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.3.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.3.js index 7188123bb4..7f5e783e63 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.3.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.3.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURIComponent has the attribute ReadOnly -es5id: 15.1.3.4_A5.3 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.4.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.4.js index 3b60c557cc..94c76992d9 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.4.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.4.js @@ -3,8 +3,6 @@ /*--- info: The length property of encodeURIComponent is 1 -es5id: 15.1.3.4_A5.4 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: encodeURIComponent.length === 1 ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.5.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.5.js index c00a36b94e..0511111641 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.5.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.5.js @@ -3,8 +3,6 @@ /*--- info: The encodeURIComponent property has the attribute DontEnum -es5id: 15.1.3.4_A5.5 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.6.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.6.js index 7d650ed49f..7027468c2a 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.6.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.6.js @@ -3,8 +3,6 @@ /*--- info: The encodeURIComponent property has not prototype property -es5id: 15.1.3.4_A5.6 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: Checking encodeURIComponent.prototype ---*/ diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.7.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.7.js index b5060101eb..84f9388d0c 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A5.7.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A5.7.js @@ -3,8 +3,6 @@ /*--- info: The encodeURIComponent property can't be used as constructor -es5id: 15.1.3.4_A5.7 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/encodeURIComponent/S15.1.3.4_A6_T1.js b/test/built-ins/encodeURIComponent/S15.1.3.4_A6_T1.js index 3dca74696c..dedf6d03b1 100644 --- a/test/built-ins/encodeURIComponent/S15.1.3.4_A6_T1.js +++ b/test/built-ins/encodeURIComponent/S15.1.3.4_A6_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.3.4_A6_T1 -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: If Type(value) is Object, evaluate ToPrimitive(value, String) ---*/ diff --git a/test/built-ins/encodeURIComponent/name.js b/test/built-ins/encodeURIComponent/name.js index 9de969b841..89278cbaca 100644 --- a/test/built-ins/encodeURIComponent/name.js +++ b/test/built-ins/encodeURIComponent/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.6.5 esid: sec-encodeuricomponent-uricomponent description: > encodeURIComponent.name is "encodeURIComponent". diff --git a/test/built-ins/eval/length-enumerable.js b/test/built-ins/eval/length-enumerable.js index 97ac7252c4..3a6f3c3884 100644 --- a/test/built-ins/eval/length-enumerable.js +++ b/test/built-ins/eval/length-enumerable.js @@ -3,8 +3,6 @@ /*--- info: The length property of eval has the attribute DontEnum -es5id: 15.1.2.1_A4.1 -es6id: 18.2.1 esid: sec-eval-x description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/eval/length-non-configurable.js b/test/built-ins/eval/length-non-configurable.js index 53ae85265b..198e767094 100644 --- a/test/built-ins/eval/length-non-configurable.js +++ b/test/built-ins/eval/length-non-configurable.js @@ -3,8 +3,6 @@ /*--- info: The length property of eval does not have the attribute DontDelete -es5id: 15.1.2.1_A4.2 -es6id: 18.2.1 esid: sec-eval-x description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/eval/length-non-writable.js b/test/built-ins/eval/length-non-writable.js index f4b2b89645..a102f2ba5d 100644 --- a/test/built-ins/eval/length-non-writable.js +++ b/test/built-ins/eval/length-non-writable.js @@ -3,8 +3,6 @@ /*--- info: The length property of eval has the attribute ReadOnly -es5id: 15.1.2.1_A4.3 -es6id: 18.2.1 esid: sec-eval-x description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/eval/length-value.js b/test/built-ins/eval/length-value.js index 2e8a4acff7..d8f770fe78 100644 --- a/test/built-ins/eval/length-value.js +++ b/test/built-ins/eval/length-value.js @@ -3,8 +3,6 @@ /*--- info: The length property of eval is 1 -es5id: 15.1.2.1_A4.4 -es6id: 18.2.1 esid: sec-eval-x description: eval.length === 1 ---*/ diff --git a/test/built-ins/eval/name.js b/test/built-ins/eval/name.js index 1d6ac686e3..eeff0bbee9 100644 --- a/test/built-ins/eval/name.js +++ b/test/built-ins/eval/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.1 esid: sec-eval-x description: > eval.name is "eval". diff --git a/test/built-ins/eval/no-construct.js b/test/built-ins/eval/no-construct.js index 8c3997512d..7dea10eca8 100644 --- a/test/built-ins/eval/no-construct.js +++ b/test/built-ins/eval/no-construct.js @@ -3,8 +3,6 @@ /*--- info: The eval property can't be used as constructor -es5id: 15.1.2.1_A4.7 -es6id: 18.2.1 esid: sec-eval-x description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/eval/no-proto.js b/test/built-ins/eval/no-proto.js index 481b5734d1..ae28da31c2 100644 --- a/test/built-ins/eval/no-proto.js +++ b/test/built-ins/eval/no-proto.js @@ -3,8 +3,6 @@ /*--- info: The eval property has not prototype property -es5id: 15.1.2.1_A4.6 -es6id: 18.2.1 esid: sec-eval-x description: Checking eval.prototype ---*/ diff --git a/test/built-ins/eval/prop-desc-enumerable.js b/test/built-ins/eval/prop-desc-enumerable.js index c1748605b0..08a2a13963 100644 --- a/test/built-ins/eval/prop-desc-enumerable.js +++ b/test/built-ins/eval/prop-desc-enumerable.js @@ -3,8 +3,6 @@ /*--- info: The eval property has the attribute DontEnum -es5id: 15.1.2.1_A4.5 -es6id: 18.2.1 esid: sec-eval-x description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/isFinite/S15.1.2.5_A2.6.js b/test/built-ins/isFinite/S15.1.2.5_A2.6.js index 1e4d28a7d3..22686d0fc5 100644 --- a/test/built-ins/isFinite/S15.1.2.5_A2.6.js +++ b/test/built-ins/isFinite/S15.1.2.5_A2.6.js @@ -3,8 +3,6 @@ /*--- info: The isFinite property has not prototype property -es5id: 15.1.2.5_A2.6 -es6id: 18.2.2 esid: sec-isfinite-number description: Checking isFinite.prototype ---*/ diff --git a/test/built-ins/isFinite/S15.1.2.5_A2.7.js b/test/built-ins/isFinite/S15.1.2.5_A2.7.js index 594dc15d7f..e28232f22a 100644 --- a/test/built-ins/isFinite/S15.1.2.5_A2.7.js +++ b/test/built-ins/isFinite/S15.1.2.5_A2.7.js @@ -3,8 +3,6 @@ /*--- info: The isFinite property can't be used as constructor -es5id: 15.1.2.5_A2.7 -es6id: 18.2.2 esid: sec-isfinite-number description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/isFinite/length.js b/test/built-ins/isFinite/length.js index da34f236b5..26450af159 100644 --- a/test/built-ins/isFinite/length.js +++ b/test/built-ins/isFinite/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > The length property of isFinite is 1 diff --git a/test/built-ins/isFinite/name.js b/test/built-ins/isFinite/name.js index fa7fca66d0..344ab9e176 100644 --- a/test/built-ins/isFinite/name.js +++ b/test/built-ins/isFinite/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > isFinite.name is "isFinite". diff --git a/test/built-ins/isFinite/prop-desc.js b/test/built-ins/isFinite/prop-desc.js index dcc90c1eba..2623b19180 100644 --- a/test/built-ins/isFinite/prop-desc.js +++ b/test/built-ins/isFinite/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Property descriptor for isFinite diff --git a/test/built-ins/isFinite/return-abrupt-from-tonumber-number-symbol.js b/test/built-ins/isFinite/return-abrupt-from-tonumber-number-symbol.js index 375b347805..876a46aecf 100644 --- a/test/built-ins/isFinite/return-abrupt-from-tonumber-number-symbol.js +++ b/test/built-ins/isFinite/return-abrupt-from-tonumber-number-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Throws a TypeError if number is a Symbol diff --git a/test/built-ins/isFinite/return-abrupt-from-tonumber-number.js b/test/built-ins/isFinite/return-abrupt-from-tonumber-number.js index 8c85134733..94e10cb2bd 100644 --- a/test/built-ins/isFinite/return-abrupt-from-tonumber-number.js +++ b/test/built-ins/isFinite/return-abrupt-from-tonumber-number.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Return abrupt completion from ToNumber(number) diff --git a/test/built-ins/isFinite/return-false-on-nan-or-infinities.js b/test/built-ins/isFinite/return-false-on-nan-or-infinities.js index 5b26ff0cbf..d0760ff3a9 100644 --- a/test/built-ins/isFinite/return-false-on-nan-or-infinities.js +++ b/test/built-ins/isFinite/return-false-on-nan-or-infinities.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Return false if number is NaN, Infinity or -Infinity diff --git a/test/built-ins/isFinite/return-true-for-valid-finite-numbers.js b/test/built-ins/isFinite/return-true-for-valid-finite-numbers.js index 7fbd2edb04..7c2adbd5e0 100644 --- a/test/built-ins/isFinite/return-true-for-valid-finite-numbers.js +++ b/test/built-ins/isFinite/return-true-for-valid-finite-numbers.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Return true if number is not NaN, Infinity or -Infinity diff --git a/test/built-ins/isFinite/tonumber-operations.js b/test/built-ins/isFinite/tonumber-operations.js index f4c7c32f52..533d05b609 100644 --- a/test/built-ins/isFinite/tonumber-operations.js +++ b/test/built-ins/isFinite/tonumber-operations.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > number argument is converted by ToNumber diff --git a/test/built-ins/isFinite/toprimitive-call-abrupt.js b/test/built-ins/isFinite/toprimitive-call-abrupt.js index f5e6252686..3f659977e5 100644 --- a/test/built-ins/isFinite/toprimitive-call-abrupt.js +++ b/test/built-ins/isFinite/toprimitive-call-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Return abrupt completion calling number.@@toPrimitive diff --git a/test/built-ins/isFinite/toprimitive-get-abrupt.js b/test/built-ins/isFinite/toprimitive-get-abrupt.js index 729eb01e9e..e9e9db66fd 100644 --- a/test/built-ins/isFinite/toprimitive-get-abrupt.js +++ b/test/built-ins/isFinite/toprimitive-get-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Return abrupt completion getting number.@@toPrimitive diff --git a/test/built-ins/isFinite/toprimitive-not-callable-throws.js b/test/built-ins/isFinite/toprimitive-not-callable-throws.js index 6106ceb895..2eea164eec 100644 --- a/test/built-ins/isFinite/toprimitive-not-callable-throws.js +++ b/test/built-ins/isFinite/toprimitive-not-callable-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Throws a TypeError if number.@@toPrimitive is not null, undefined, or callable diff --git a/test/built-ins/isFinite/toprimitive-result-is-object-throws.js b/test/built-ins/isFinite/toprimitive-result-is-object-throws.js index bd97608d58..6663a98824 100644 --- a/test/built-ins/isFinite/toprimitive-result-is-object-throws.js +++ b/test/built-ins/isFinite/toprimitive-result-is-object-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Throws a TypeError if the result of calling number.@@toPrimitive is an Object diff --git a/test/built-ins/isFinite/toprimitive-result-is-symbol-throws.js b/test/built-ins/isFinite/toprimitive-result-is-symbol-throws.js index 825fa0be99..7cedfbbf2d 100644 --- a/test/built-ins/isFinite/toprimitive-result-is-symbol-throws.js +++ b/test/built-ins/isFinite/toprimitive-result-is-symbol-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Throws a TypeError if the result of calling number.@@toPrimitive is a symbol diff --git a/test/built-ins/isFinite/toprimitive-valid-result.js b/test/built-ins/isFinite/toprimitive-valid-result.js index 29d1674431..2342a50e75 100644 --- a/test/built-ins/isFinite/toprimitive-valid-result.js +++ b/test/built-ins/isFinite/toprimitive-valid-result.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.2 esid: sec-isfinite-number description: > Use non-object value returned from @@toPrimitive method diff --git a/test/built-ins/isNaN/S15.1.2.4_A2.6.js b/test/built-ins/isNaN/S15.1.2.4_A2.6.js index a6ff6f0411..9c8baaaa12 100644 --- a/test/built-ins/isNaN/S15.1.2.4_A2.6.js +++ b/test/built-ins/isNaN/S15.1.2.4_A2.6.js @@ -3,8 +3,6 @@ /*--- info: The isNaN property has not prototype property -es5id: 15.1.2.4_A2.6 -es6id: 18.2.3 esid: sec-isnan-number description: Checking isNaN.prototype ---*/ diff --git a/test/built-ins/isNaN/S15.1.2.4_A2.7.js b/test/built-ins/isNaN/S15.1.2.4_A2.7.js index 808a777b8c..f269e18028 100644 --- a/test/built-ins/isNaN/S15.1.2.4_A2.7.js +++ b/test/built-ins/isNaN/S15.1.2.4_A2.7.js @@ -3,8 +3,6 @@ /*--- info: The isNaN property can't be used as constructor -es5id: 15.1.2.4_A2.7 -es6id: 18.2.3 esid: sec-isnan-number description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/isNaN/length.js b/test/built-ins/isNaN/length.js index 99bbcf43b4..758e686379 100644 --- a/test/built-ins/isNaN/length.js +++ b/test/built-ins/isNaN/length.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > The length property of isNaN is 1 diff --git a/test/built-ins/isNaN/name.js b/test/built-ins/isNaN/name.js index 37a6555c9c..b270cf9705 100644 --- a/test/built-ins/isNaN/name.js +++ b/test/built-ins/isNaN/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > isNaN.name is "isNaN". diff --git a/test/built-ins/isNaN/prop-desc.js b/test/built-ins/isNaN/prop-desc.js index b0f0e24a53..b60b596d50 100644 --- a/test/built-ins/isNaN/prop-desc.js +++ b/test/built-ins/isNaN/prop-desc.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Property descriptor for isNaN diff --git a/test/built-ins/isNaN/return-abrupt-from-tonumber-number-symbol.js b/test/built-ins/isNaN/return-abrupt-from-tonumber-number-symbol.js index 000f1e1288..4b4e596cae 100644 --- a/test/built-ins/isNaN/return-abrupt-from-tonumber-number-symbol.js +++ b/test/built-ins/isNaN/return-abrupt-from-tonumber-number-symbol.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Throws a TypeError if number is a Symbol diff --git a/test/built-ins/isNaN/return-abrupt-from-tonumber-number.js b/test/built-ins/isNaN/return-abrupt-from-tonumber-number.js index b4f062bd88..f5e2d36fe0 100644 --- a/test/built-ins/isNaN/return-abrupt-from-tonumber-number.js +++ b/test/built-ins/isNaN/return-abrupt-from-tonumber-number.js @@ -3,7 +3,6 @@ /*--- esid: sec-isnan-number -es6id: 18.2.3 description: > Return abrupt completion from ToNumber(number) info: | diff --git a/test/built-ins/isNaN/return-false-not-nan-numbers.js b/test/built-ins/isNaN/return-false-not-nan-numbers.js index 8ea9ca3c16..eac0e33dea 100644 --- a/test/built-ins/isNaN/return-false-not-nan-numbers.js +++ b/test/built-ins/isNaN/return-false-not-nan-numbers.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Return false if number is not NaN diff --git a/test/built-ins/isNaN/return-true-nan.js b/test/built-ins/isNaN/return-true-nan.js index 32cf3835a2..42b4c9f756 100644 --- a/test/built-ins/isNaN/return-true-nan.js +++ b/test/built-ins/isNaN/return-true-nan.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Return true if number is NaN diff --git a/test/built-ins/isNaN/tonumber-operations.js b/test/built-ins/isNaN/tonumber-operations.js index 744b8973e0..252826bf95 100644 --- a/test/built-ins/isNaN/tonumber-operations.js +++ b/test/built-ins/isNaN/tonumber-operations.js @@ -3,7 +3,6 @@ /*--- esid: sec-isnan-number -es6id: 18.2.3 description: > number argument is converted by ToNumber info: | diff --git a/test/built-ins/isNaN/toprimitive-call-abrupt.js b/test/built-ins/isNaN/toprimitive-call-abrupt.js index e5790532df..9ef78785ba 100644 --- a/test/built-ins/isNaN/toprimitive-call-abrupt.js +++ b/test/built-ins/isNaN/toprimitive-call-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Return abrupt completion calling number.@@toPrimitive diff --git a/test/built-ins/isNaN/toprimitive-get-abrupt.js b/test/built-ins/isNaN/toprimitive-get-abrupt.js index b059dde14d..496f20fbcf 100644 --- a/test/built-ins/isNaN/toprimitive-get-abrupt.js +++ b/test/built-ins/isNaN/toprimitive-get-abrupt.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Return abrupt completion getting number.@@toPrimitive diff --git a/test/built-ins/isNaN/toprimitive-not-callable-throws.js b/test/built-ins/isNaN/toprimitive-not-callable-throws.js index 5b540e4092..2d3b5ee875 100644 --- a/test/built-ins/isNaN/toprimitive-not-callable-throws.js +++ b/test/built-ins/isNaN/toprimitive-not-callable-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Throws a TypeError if number.@@toPrimitive is not null, undefined, or callable diff --git a/test/built-ins/isNaN/toprimitive-result-is-object-throws.js b/test/built-ins/isNaN/toprimitive-result-is-object-throws.js index 223e7dfd54..b1765a1816 100644 --- a/test/built-ins/isNaN/toprimitive-result-is-object-throws.js +++ b/test/built-ins/isNaN/toprimitive-result-is-object-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Throws a TypeError if the result of calling number.@@toPrimitive is an Object diff --git a/test/built-ins/isNaN/toprimitive-result-is-symbol-throws.js b/test/built-ins/isNaN/toprimitive-result-is-symbol-throws.js index c77022440b..498c93282b 100644 --- a/test/built-ins/isNaN/toprimitive-result-is-symbol-throws.js +++ b/test/built-ins/isNaN/toprimitive-result-is-symbol-throws.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Throws a TypeError if the result of calling number.@@toPrimitive is a symbol diff --git a/test/built-ins/isNaN/toprimitive-valid-result.js b/test/built-ins/isNaN/toprimitive-valid-result.js index 577214e803..8049a88305 100644 --- a/test/built-ins/isNaN/toprimitive-valid-result.js +++ b/test/built-ins/isNaN/toprimitive-valid-result.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.3 esid: sec-isnan-number description: > Use non-object value returned from @@toPrimitive method diff --git a/test/built-ins/parseFloat/15.1.2.3-2-1.js b/test/built-ins/parseFloat/15.1.2.3-2-1.js index af89fcbaf4..dee8a171c4 100644 --- a/test/built-ins/parseFloat/15.1.2.3-2-1.js +++ b/test/built-ins/parseFloat/15.1.2.3-2-1.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.2.3-2-1 -es6id: 18.2.4 esid: sec-parsefloat-string description: > pareseFloat - 'trimmedString' is the empty string when inputString diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T1.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T1.js index e93128c728..2a63d53b3e 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T1 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for boolean primitive ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T2.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T2.js index 581472bb99..ced845de2a 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T2 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for number primitive ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T3.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T3.js index 1574b64c41..63ff347491 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T3 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for undefined and null ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T4.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T4.js index 07e127028b..801e063402 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T4.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T4.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T4 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for Boolean object ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T5.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T5.js index b9b690a1e5..1f903e74b5 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T5.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T5.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T5 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for Number object ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T6.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T6.js index 30249f34e3..9a40d77fc1 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T6.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T6.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T6 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking for String object ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A1_T7.js b/test/built-ins/parseFloat/S15.1.2.3_A1_T7.js index d135fcde60..7316ee4deb 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A1_T7.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A1_T7.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.3_A1_T7 -es6id: 18.2.4 esid: sec-parsefloat-string description: If Type(value) is Object, evaluate ToPrimitive(value, String) ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T1.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T1.js index aeb7a4f0f9..07b4e4a9da 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T1 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: TAB (U+0009)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T10.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T10.js index 5e38fc4fa2..7c211e7344 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T10.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T10.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T10 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: USP" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js index 2b0d8cc707..64ab34db51 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.4 esid: sec-parsefloat-string description: > Leading U+180E is not recognized as whitespace diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T2.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T2.js index adc26c64ff..0463b20515 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T2 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: SP (U+0020)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T3.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T3.js index eaf79462f3..c629fc8f15 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T3 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: NBSB (U+00A0)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T4.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T4.js index cc21dad2dc..fa1c61dbac 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T4.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T4.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T4 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: FF (U+000C)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T5.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T5.js index cfafd29b87..0a9f005063 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T5.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T5.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T5 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: VT (U+000B)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T6.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T6.js index b96bbc8378..8f8ce09baf 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T6.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T6.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T6 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: CR (U+000D)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T7.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T7.js index f4ecf63d5f..27dab122da 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T7.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T7.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T7 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: LF (U+000A)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T8.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T8.js index ecec6e0ecf..a623aea73b 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T8.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T8.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T8 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: LS (U+2028)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A2_T9.js b/test/built-ins/parseFloat/S15.1.2.3_A2_T9.js index 4dc9e2ff15..dfda7b30df 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A2_T9.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A2_T9.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.3_A2_T9 -es6id: 18.2.4 esid: sec-parsefloat-string description: "StrWhiteSpaceChar :: PS (U+2029)" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A3_T1.js b/test/built-ins/parseFloat/S15.1.2.3_A3_T1.js index b9eeb05a06..19160a4d97 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A3_T1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A3_T1.js @@ -5,8 +5,6 @@ info: | If neither Result(2) nor any prefix of Result(2) satisfies the syntax of a StrDecimalLiteral (see 9.3.1), return NaN -es5id: 15.1.2.3_A3_T1 -es6id: 18.2.4 esid: sec-parsefloat-string description: parseFloat("some string") return NaN ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A3_T2.js b/test/built-ins/parseFloat/S15.1.2.3_A3_T2.js index bcbb20e34f..3bd35e158a 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A3_T2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A3_T2.js @@ -5,8 +5,6 @@ info: | If neither Result(2) nor any prefix of Result(2) satisfies the syntax of a StrDecimalLiteral (see 9.3.1), return NaN -es5id: 15.1.2.3_A3_T2 -es6id: 18.2.4 esid: sec-parsefloat-string description: parseFloat("wrong number format with ExponentIndicator") return NaN ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A3_T3.js b/test/built-ins/parseFloat/S15.1.2.3_A3_T3.js index 133dde3fcc..b80e9caafc 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A3_T3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A3_T3.js @@ -5,8 +5,6 @@ info: | If neither Result(2) nor any prefix of Result(2) satisfies the syntax of a StrDecimalLiteral (see 9.3.1), return NaN -es5id: 15.1.2.3_A3_T3 -es6id: 18.2.4 esid: sec-parsefloat-string description: parseFloat("wrong numbr format") return NaN ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T1.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T1.js index 671b6bfb14..1867516412 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T1.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T1 -es6id: 18.2.4 esid: sec-parsefloat-string description: Some wrong number ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T2.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T2.js index e6d52dcc69..329c97a1a5 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T2.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T2 -es6id: 18.2.4 esid: sec-parsefloat-string description: With ExponentIndicator ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T3.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T3.js index 7895f10004..feb1fc48fc 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T3.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T3 -es6id: 18.2.4 esid: sec-parsefloat-string description: StrDecimalLiteral not contain HexIntegerLiteral ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T4.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T4.js index f0d52229b8..18237cb318 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T4.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T4.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T4 -es6id: 18.2.4 esid: sec-parsefloat-string description: "\"Infinity\"+\"some string\"" ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T5.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T5.js index 3f2b8c3079..e1f923ea59 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T5.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T5.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T5 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking DecimalDigits . DecimalDigits_opt ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T6.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T6.js index 51dd0da123..f9c7728241 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T6.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T6.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T6 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking . DecimalDigits ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A4_T7.js b/test/built-ins/parseFloat/S15.1.2.3_A4_T7.js index 54b94ec0e4..8b33100c6a 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A4_T7.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A4_T7.js @@ -5,8 +5,6 @@ info: | Compute the longest prefix of Result(2), which might be Result(2) itself, which satisfies the syntax of a StrDecimalLiteral -es5id: 15.1.2.3_A4_T7 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking DecimalDigits ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A5_T1.js b/test/built-ins/parseFloat/S15.1.2.3_A5_T1.js index 3aa22c5dc1..6bcaef8c86 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A5_T1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A5_T1.js @@ -3,8 +3,6 @@ /*--- info: Return the number value for the MV of Result(4) -es5id: 15.1.2.3_A5_T1 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking Infinity ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A5_T2.js b/test/built-ins/parseFloat/S15.1.2.3_A5_T2.js index be942c0ae8..54db81283b 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A5_T2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A5_T2.js @@ -3,8 +3,6 @@ /*--- info: Return the number value for the MV of Result(4) -es5id: 15.1.2.3_A5_T2 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking DecimalDigits . DecimalDigits_opt ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A5_T3.js b/test/built-ins/parseFloat/S15.1.2.3_A5_T3.js index a18ab30e31..b450870069 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A5_T3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A5_T3.js @@ -3,8 +3,6 @@ /*--- info: Return the number value for the MV of Result(4) -es5id: 15.1.2.3_A5_T3 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking . DecimalDigits ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A5_T4.js b/test/built-ins/parseFloat/S15.1.2.3_A5_T4.js index 6161c9e765..7b4c997677 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A5_T4.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A5_T4.js @@ -3,8 +3,6 @@ /*--- info: Return the number value for the MV of Result(4) -es5id: 15.1.2.3_A5_T4 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking DecimalDigits ExponentPart_opt ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A6.js b/test/built-ins/parseFloat/S15.1.2.3_A6.js index 00e76a94d3..5ca3d94006 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A6.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A6.js @@ -7,8 +7,6 @@ info: | a number value; it ignores any characters that cannot be interpreted as part of the notation of an decimal literal, and no indication is given that any such characters were ignored. -es5id: 15.1.2.3_A6 -es6id: 18.2.4 esid: sec-parsefloat-string description: Complex test without eval includes: [decimalToHexString.js] diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.1.js b/test/built-ins/parseFloat/S15.1.2.3_A7.1.js index 4d39ca400a..f0e0ff2dcc 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.1.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.1.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseFloat has the attribute DontEnum -es5id: 15.1.2.3_A7.1 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.2.js b/test/built-ins/parseFloat/S15.1.2.3_A7.2.js index c6f8d7f121..95daab66ed 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.2.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.2.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseFloat does not have the attribute DontDelete -es5id: 15.1.2.3_A7.2 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.3.js b/test/built-ins/parseFloat/S15.1.2.3_A7.3.js index 9062e57472..5138f9c1fd 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.3.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.3.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseFloat has the attribute ReadOnly -es5id: 15.1.2.3_A7.3 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.4.js b/test/built-ins/parseFloat/S15.1.2.3_A7.4.js index c86c25e11d..1794edb747 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.4.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.4.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseFloat is 1 -es5id: 15.1.2.3_A7.4 -es6id: 18.2.4 esid: sec-parsefloat-string description: parseFloat.length === 1 ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.5.js b/test/built-ins/parseFloat/S15.1.2.3_A7.5.js index 66902d7fa9..3b0680fa56 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.5.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.5.js @@ -3,8 +3,6 @@ /*--- info: The parseFloat property has the attribute DontEnum -es5id: 15.1.2.3_A7.5 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.6.js b/test/built-ins/parseFloat/S15.1.2.3_A7.6.js index 5864739afc..d3c9f2192a 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.6.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.6.js @@ -3,8 +3,6 @@ /*--- info: The parseFloat property has not prototype property -es5id: 15.1.2.3_A7.6 -es6id: 18.2.4 esid: sec-parsefloat-string description: Checking parseFloat.prototype ---*/ diff --git a/test/built-ins/parseFloat/S15.1.2.3_A7.7.js b/test/built-ins/parseFloat/S15.1.2.3_A7.7.js index 6b73b9cdde..5f1571ef55 100644 --- a/test/built-ins/parseFloat/S15.1.2.3_A7.7.js +++ b/test/built-ins/parseFloat/S15.1.2.3_A7.7.js @@ -3,8 +3,6 @@ /*--- info: The parseFloat property can't be used as constructor -es5id: 15.1.2.3_A7.7 -es6id: 18.2.4 esid: sec-parsefloat-string description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/parseFloat/name.js b/test/built-ins/parseFloat/name.js index 34419922a0..47b81bf3ef 100644 --- a/test/built-ins/parseFloat/name.js +++ b/test/built-ins/parseFloat/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.4 esid: sec-parsefloat-string description: > parseFloat.name is "parseFloat". diff --git a/test/built-ins/parseInt/15.1.2.2-2-1.js b/test/built-ins/parseInt/15.1.2.2-2-1.js index d7b701bc29..3bcbee90e1 100644 --- a/test/built-ins/parseInt/15.1.2.2-2-1.js +++ b/test/built-ins/parseInt/15.1.2.2-2-1.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.2.2-2-1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: > pareseInt - 'S' is the empty string when inputString does not diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A1_T1.js index db4a8d4e3e..27162340b7 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for boolean primitive ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T2.js b/test/built-ins/parseInt/S15.1.2.2_A1_T2.js index beca0f23f9..fb4a88e9ed 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for number primitive ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T3.js b/test/built-ins/parseInt/S15.1.2.2_A1_T3.js index ea04850129..3b60473b86 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for undefined and null ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T4.js b/test/built-ins/parseInt/S15.1.2.2_A1_T4.js index 578539e39e..18edd230e6 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T4.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T4.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T4 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for Boolean object ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T5.js b/test/built-ins/parseInt/S15.1.2.2_A1_T5.js index cd6589be2b..92d2cc92fc 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T5.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T5.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T5 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for Number object ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T6.js b/test/built-ins/parseInt/S15.1.2.2_A1_T6.js index 999a96d6dd..4e6680a088 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T6.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T6.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T6 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for String object ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A1_T7.js b/test/built-ins/parseInt/S15.1.2.2_A1_T7.js index 617db6cd9f..f370ed70d7 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A1_T7.js +++ b/test/built-ins/parseInt/S15.1.2.2_A1_T7.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToString -es5id: 15.1.2.2_A1_T7 -es6id: 18.2.5 esid: sec-parseint-string-radix description: If Type(value) is Object, evaluate ToPrimitive(value, String) ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A2_T1.js index ab87298aff..f2e2f9bcf9 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: TAB (U+0009)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T10.js b/test/built-ins/parseInt/S15.1.2.2_A2_T10.js index 359035302d..1b7dd391e0 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T10.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T10.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T10 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: USP" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js b/test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js index 488a36640d..308895fcda 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.2.2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: > Leading U+180E is not recognized as whitespace diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A2_T2.js index c5519e82e8..16c33f2c91 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: SP (U+0020)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T3.js b/test/built-ins/parseInt/S15.1.2.2_A2_T3.js index 81c82bedd3..6d1a98ae29 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: NBSB (U+00A0)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T4.js b/test/built-ins/parseInt/S15.1.2.2_A2_T4.js index 729fb12fff..edca074a35 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T4.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T4.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T4 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: FF (U+000C)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T5.js b/test/built-ins/parseInt/S15.1.2.2_A2_T5.js index 340b0d0d73..dc0ce108e1 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T5.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T5.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T5 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: VT (U+000B)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T6.js b/test/built-ins/parseInt/S15.1.2.2_A2_T6.js index 0fdfeb587b..fb626be72b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T6.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T6.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T6 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: CR (U+000D)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T7.js b/test/built-ins/parseInt/S15.1.2.2_A2_T7.js index 1a234d944f..7d1d383fab 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T7.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T7.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T7 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: LF (U+000A)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T8.js b/test/built-ins/parseInt/S15.1.2.2_A2_T8.js index 937af31c15..d04e40b3a5 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T8.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T8.js @@ -3,8 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es5id: 15.1.2.2_A2_T8 -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: LS (U+2028)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T9.js b/test/built-ins/parseInt/S15.1.2.2_A2_T9.js index 18b5892e99..fb49cc09c5 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T9.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T9.js @@ -3,7 +3,6 @@ /*--- info: Operator remove leading StrWhiteSpaceChar -es6id: 18.2.5 esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: PS (U+2029)" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T1.js index 9b28663614..1604a8faa2 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for boolean primitive ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T2.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T2.js index fa44f3d71d..3910d27573 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for string primitive ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T3.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T3.js index 4650bb3079..11d185bc4c 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for undefined and null ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T4.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T4.js index c0ac0cce36..d454794f1b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T4.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T4.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T4 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for Boolean object ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T5.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T5.js index 197410039f..f040c2ab92 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T5.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T5.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T5 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking for Number object ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T6.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T6.js index 3a5a373a2a..62d0ace406 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T6.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T6.js @@ -5,7 +5,6 @@ info: Operator use ToNumber es5id: 15.1.2.2_A3.1_T6 description: Checking for String object -es6id: 18.2.5 esid: sec-parseint-string-radix ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.1_T7.js b/test/built-ins/parseInt/S15.1.2.2_A3.1_T7.js index 1eeaec01fe..ccea653517 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.1_T7.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.1_T7.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToNumber -es5id: 15.1.2.2_A3.1_T7 -es6id: 18.2.5 esid: sec-parseint-string-radix description: If Type(value) is Object, evaluate ToPrimitive(value, Number) ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A3.2_T1.js index e240a9f4b2..2dbbeb9b8a 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.2_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.2_T1.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToInt32 -es5id: 15.1.2.2_A3.2_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: If radix is NaN, +0, -0, +Infinity, -Infinity, return radix = +0 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A3.2_T2.js index a35648549b..622bdf0105 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.2_T2.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToInt32 -es5id: 15.1.2.2_A3.2_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: ToInt32 use floor ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A3.2_T3.js b/test/built-ins/parseInt/S15.1.2.2_A3.2_T3.js index 11bacfa148..ee2aa3ffcc 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A3.2_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A3.2_T3.js @@ -3,8 +3,6 @@ /*--- info: Operator use ToInt32 -es5id: 15.1.2.2_A3.2_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: ToInt32 use modulo ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A4.1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A4.1_T1.js index c5e7dee4cf..7d23fe5eb9 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A4.1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A4.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If R = 0 or R = undefined, then R = 10 -es5id: 15.1.2.2_A4.1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: R = 0 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A4.1_T2.js b/test/built-ins/parseInt/S15.1.2.2_A4.1_T2.js index 777385a580..f4748e0bb5 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A4.1_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A4.1_T2.js @@ -3,8 +3,6 @@ /*--- info: If R = 0 or R = undefined, then R = 10 -es5id: 15.1.2.2_A4.1_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: R = undefined ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A4.2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A4.2_T1.js index 7e0a288f56..41bafa3087 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A4.2_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A4.2_T1.js @@ -3,8 +3,6 @@ /*--- info: If R < 2 or R > 36, then return NaN -es5id: 15.1.2.2_A4.2_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: R = 1 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A4.2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A4.2_T2.js index c2c46a4478..c08144fb8b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A4.2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A4.2_T2.js @@ -3,8 +3,6 @@ /*--- info: If R < 2 or R > 36, then return NaN -es5id: 15.1.2.2_A4.2_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: R = 37 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A5.1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A5.1_T1.js index d626f0465a..2593dfae79 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A5.1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A5.1_T1.js @@ -7,8 +7,6 @@ info: | octal. "If radix is undefined or 0, it is assumed to be 10 except when the number begins with the character pairs 0x or 0X, in which case a radix of 16 is assumed." -es5id: 15.1.2.2_A5.1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Check if parseInt still accepts octal ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A5.2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A5.2_T1.js index cbb1b7733a..e12ecaa4f2 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A5.2_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A5.2_T1.js @@ -5,8 +5,6 @@ info: | If the length of S is at least 2 and the first two characters of S are either 0x or 0X, then remove the first two characters from S and let R = 16 -es5id: 15.1.2.2_A5.2_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: ": 0x" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A5.2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A5.2_T2.js index d644f36048..3777d0abcd 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A5.2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A5.2_T2.js @@ -5,8 +5,6 @@ info: | If the length of S is at least 2 and the first two characters of S are either 0x or 0X, then remove the first two characters from S and let R = 16 -es5id: 15.1.2.2_A5.2_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: ": 0X" ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T1.js index 980f9dc9a2..97ad10737b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T1.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. R in [2, 36] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T2.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T2.js index 9432e28a5f..1699b2588b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T2.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Radix-R notation in [0..9, A-Z] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T3.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T3.js index 3a183343f4..f4b805ae9c 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T3.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Radix-R notation in [0..9, a-z] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T4.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T4.js index fe8a90bbfe..d08bfbfce6 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T4.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T4.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T4 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Radix-R notation in [0..9, A-Z] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T5.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T5.js index 682b4cf049..e2dcc02dbf 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T5.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T5.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T5 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Radix-R notation in [0..9, a-z] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A6.1_T6.js b/test/built-ins/parseInt/S15.1.2.2_A6.1_T6.js index 609e42e476..4837216951 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A6.1_T6.js +++ b/test/built-ins/parseInt/S15.1.2.2_A6.1_T6.js @@ -6,8 +6,6 @@ info: | If S contains any character that is not a radix-R digit, then let Z be the substring of S consisting of all characters before the first such character; otherwise, let Z be S -es5id: 15.1.2.2_A6.1_T6 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Radix-R notation in [0..9] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.1_T1.js b/test/built-ins/parseInt/S15.1.2.2_A7.1_T1.js index 2faf6eb467..51f965d27f 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.1_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.1_T1.js @@ -3,8 +3,6 @@ /*--- info: If Z is empty, return NaN -es5id: 15.1.2.2_A7.1_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. R in [2, 36] ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.1_T2.js b/test/built-ins/parseInt/S15.1.2.2_A7.1_T2.js index b12a4ab5f3..ae3aabd222 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.1_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.1_T2.js @@ -3,8 +3,6 @@ /*--- info: If Z is empty, return NaN -es5id: 15.1.2.2_A7.1_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: x is not a radix-R digit ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A7.2_T1.js index db1c91d32e..9ec442bc65 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.2_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.2_T1.js @@ -7,8 +7,6 @@ info: | that is represented by Z in radix-R notation, using the letters A-Z and a-z for digits with values 10 through 35. Compute the number value for Result(16) -es5id: 15.1.2.2_A7.2_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Check algorithm ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A7.2_T2.js index 81b667e8cd..00838303fc 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.2_T2.js @@ -7,8 +7,6 @@ info: | that is represented by Z in radix-R notation, using the letters A-Z and a-z for digits with values 10 through 35. Compute the number value for Result(16) -es5id: 15.1.2.2_A7.2_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking algorithm for R = 2 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.2_T3.js b/test/built-ins/parseInt/S15.1.2.2_A7.2_T3.js index 7dfc5a7555..b644e8a54f 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.2_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.2_T3.js @@ -7,8 +7,6 @@ info: | that is represented by Z in radix-R notation, using the letters A-Z and a-z for digits with values 10 through 35. Compute the number value for Result(16) -es5id: 15.1.2.2_A7.2_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking algorithm for R = 16 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.3_T1.js b/test/built-ins/parseInt/S15.1.2.2_A7.3_T1.js index 5b8fdfcbf2..b77016d4c8 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.3_T1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.3_T1.js @@ -3,8 +3,6 @@ /*--- info: Return sign * Result(17) -es5id: 15.1.2.2_A7.3_T1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test. Check algorithm ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.3_T2.js b/test/built-ins/parseInt/S15.1.2.2_A7.3_T2.js index d6becd0262..91fd295c6f 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.3_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.3_T2.js @@ -3,8 +3,6 @@ /*--- info: Return sign * Result(17) -es5id: 15.1.2.2_A7.3_T2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking algorithm for R = 2 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A7.3_T3.js b/test/built-ins/parseInt/S15.1.2.2_A7.3_T3.js index 7fbae894b6..2cd5f9883e 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A7.3_T3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A7.3_T3.js @@ -3,8 +3,6 @@ /*--- info: Return sign * Result(17) -es5id: 15.1.2.2_A7.3_T3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking algorithm for R = 10 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A8.js b/test/built-ins/parseInt/S15.1.2.2_A8.js index 8a0ee29740..518e58be64 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A8.js +++ b/test/built-ins/parseInt/S15.1.2.2_A8.js @@ -7,8 +7,6 @@ info: | a number value; it ignores any characters that cannot be interpreted as part of the notation of an decimal literal, and no indication is given that any such characters were ignored. -es5id: 15.1.2.2_A8 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Complex test without eval includes: [decimalToHexString.js] diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.1.js b/test/built-ins/parseInt/S15.1.2.2_A9.1.js index b29cc42674..0f4e4cdede 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.1.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.1.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseInt has the attribute DontEnum -es5id: 15.1.2.2_A9.1 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.2.js b/test/built-ins/parseInt/S15.1.2.2_A9.2.js index 88d5e65192..d6a507e55c 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.2.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseInt does not have the attribute DontDelete -es5id: 15.1.2.2_A9.2 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking use hasOwnProperty, delete ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.3.js b/test/built-ins/parseInt/S15.1.2.2_A9.3.js index 22d8fb42ea..b523e52458 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.3.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.3.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseInt has the attribute ReadOnly -es5id: 15.1.2.2_A9.3 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking if varying the length property fails includes: [propertyHelper.js] diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.4.js b/test/built-ins/parseInt/S15.1.2.2_A9.4.js index 53aee3e9d3..26cf97d0f6 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.4.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.4.js @@ -3,8 +3,6 @@ /*--- info: The length property of parseInt is 2 -es5id: 15.1.2.2_A9.4 -es6id: 18.2.5 esid: sec-parseint-string-radix description: parseInt.length === 2 ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.5.js b/test/built-ins/parseInt/S15.1.2.2_A9.5.js index 61510e57af..666329fb4c 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.5.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.5.js @@ -3,8 +3,6 @@ /*--- info: The parseInt property has the attribute DontEnum -es5id: 15.1.2.2_A9.5 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking use propertyIsEnumerable, for-in ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.6.js b/test/built-ins/parseInt/S15.1.2.2_A9.6.js index 7e00dd743f..ebb49a9f6b 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.6.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.6.js @@ -3,8 +3,6 @@ /*--- info: The parseInt property has not prototype property -es5id: 15.1.2.2_A9.6 -es6id: 18.2.5 esid: sec-parseint-string-radix description: Checking parseInt.prototype ---*/ diff --git a/test/built-ins/parseInt/S15.1.2.2_A9.7.js b/test/built-ins/parseInt/S15.1.2.2_A9.7.js index 07e815e5ca..9f84e88bb9 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A9.7.js +++ b/test/built-ins/parseInt/S15.1.2.2_A9.7.js @@ -3,8 +3,6 @@ /*--- info: The parseInt property can't be used as constructor -es5id: 15.1.2.2_A9.7 -es6id: 18.2.5 esid: sec-parseint-string-radix description: > If property does not implement the internal [[Construct]] method, diff --git a/test/built-ins/parseInt/name.js b/test/built-ins/parseInt/name.js index e4c21e22af..aed07e2018 100644 --- a/test/built-ins/parseInt/name.js +++ b/test/built-ins/parseInt/name.js @@ -2,7 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 18.2.5 esid: sec-parseint-string-radix description: > parseInt.name is "parseInt". diff --git a/test/built-ins/undefined/15.1.1.3-0.js b/test/built-ins/undefined/15.1.1.3-0.js index 166c75e565..e2bdf44b4a 100644 --- a/test/built-ins/undefined/15.1.1.3-0.js +++ b/test/built-ins/undefined/15.1.1.3-0.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.1.3-0 -es6id: 18.1.3 esid: sec-undefined description: > Global.undefined is a data property with default attribute values diff --git a/test/built-ins/undefined/15.1.1.3-1.js b/test/built-ins/undefined/15.1.1.3-1.js index 6acc412ed0..0c34b1ddd9 100644 --- a/test/built-ins/undefined/15.1.1.3-1.js +++ b/test/built-ins/undefined/15.1.1.3-1.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.1.3-1 -es6id: 18.1.3 esid: sec-undefined description: undefined is not writable, should not throw in non-strict mode flags: [noStrict] diff --git a/test/built-ins/undefined/15.1.1.3-2.js b/test/built-ins/undefined/15.1.1.3-2.js index 78ab60a765..49bbdc9c1f 100644 --- a/test/built-ins/undefined/15.1.1.3-2.js +++ b/test/built-ins/undefined/15.1.1.3-2.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.1.3-2 -es6id: 18.1.3 esid: sec-undefined description: undefined is not writable, should throw TypeError in strict mode flags: [onlyStrict] diff --git a/test/built-ins/undefined/15.1.1.3-3.js b/test/built-ins/undefined/15.1.1.3-3.js index d22b0b0ca9..e3e7630493 100644 --- a/test/built-ins/undefined/15.1.1.3-3.js +++ b/test/built-ins/undefined/15.1.1.3-3.js @@ -2,8 +2,6 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es5id: 15.1.1.3-3 -es6id: 18.1.3 esid: sec-undefined description: > undefined is not writable, simple assignment should return the diff --git a/test/built-ins/undefined/S15.1.1.3_A1.js b/test/built-ins/undefined/S15.1.1.3_A1.js index c5159d7e13..73b6b691b6 100644 --- a/test/built-ins/undefined/S15.1.1.3_A1.js +++ b/test/built-ins/undefined/S15.1.1.3_A1.js @@ -3,8 +3,6 @@ /*--- info: The initial value of undefined is undefined -es5id: 15.1.1.3_A1 -es6id: 18.1.3 esid: sec-undefined description: Use typeof, isNaN, isFinite ---*/ diff --git a/test/built-ins/undefined/S15.1.1.3_A3_T1.js b/test/built-ins/undefined/S15.1.1.3_A3_T1.js index 855624a2b7..6fff629f87 100644 --- a/test/built-ins/undefined/S15.1.1.3_A3_T1.js +++ b/test/built-ins/undefined/S15.1.1.3_A3_T1.js @@ -3,8 +3,6 @@ /*--- info: The undefined is DontDelete -es5id: 15.1.1.3_A3.1 -es6id: 18.1.3 esid: sec-undefined description: Use delete includes: [propertyHelper.js] diff --git a/test/built-ins/undefined/S15.1.1.3_A3_T2.js b/test/built-ins/undefined/S15.1.1.3_A3_T2.js index 12282235e4..60a184cba1 100644 --- a/test/built-ins/undefined/S15.1.1.3_A3_T2.js +++ b/test/built-ins/undefined/S15.1.1.3_A3_T2.js @@ -3,8 +3,6 @@ /*--- info: The undefined is DontDelete -es5id: 15.1.1.3_A3.1 -es6id: 18.1.3 esid: sec-undefined description: Use delete flags: [noStrict] diff --git a/test/built-ins/undefined/S15.1.1.3_A4.js b/test/built-ins/undefined/S15.1.1.3_A4.js index 49918799e9..3d3cdba4d4 100644 --- a/test/built-ins/undefined/S15.1.1.3_A4.js +++ b/test/built-ins/undefined/S15.1.1.3_A4.js @@ -3,8 +3,6 @@ /*--- info: The undefined is DontEnum -es5id: 15.1.1.3_A3.2 -es6id: 18.1.3 esid: sec-undefined description: Use for-in statement ---*/