summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js
diff options
context:
space:
mode:
authordeathbearbrown <deathbearbrown@gmail.com>2017-06-30 14:17:38 -0700
committerRick Waldron <waldron.rick@gmail.com>2017-07-12 17:05:44 -0400
commit20b8c9b8963ae389a000c89c96e4780277bdbb96 (patch)
treee40aeb9dd51833d728ba7dd85262cf056b06359f /test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js
parente07385fff4d58f0854ae04da53ac9cefeaee75db (diff)
downloadqtdeclarative-testsuites-20b8c9b8963ae389a000c89c96e4780277bdbb96.tar.gz
add esid to array/prototype/splice tests
Diffstat (limited to 'test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js')
-rw-r--r--test/built-ins/Array/prototype/splice/S15.4.4.12_A4_T3.js41
1 files changed, 21 insertions, 20 deletions
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 49424acf8..db412def3 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
@@ -3,6 +3,7 @@
/*---
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]
@@ -15,30 +16,30 @@ x.length = 1;
var arr = x.splice(0,1);
//CHECK#1
-if (arr.length !== 1) {
- $ERROR('#1: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); arr.length === 1. Actual: ' + (arr.length));
+if (arr.length !== 1) {
+ $ERROR('#1: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); arr.length === 1. Actual: ' + (arr.length));
}
//CHECK#2
-if (arr[0] !== -1) {
- $ERROR('#2: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); arr[0] === -1. Actual: ' + (arr[0]));
+if (arr[0] !== -1) {
+ $ERROR('#2: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); arr[0] === -1. Actual: ' + (arr[0]));
}
delete arr[0];
//CHECK#3
-if (arr[0] !== -1) {
- $ERROR('#3: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); delete arr[0]; arr[0] === -1. Actual: ' + (arr[0]));
+if (arr[0] !== -1) {
+ $ERROR('#3: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); delete arr[0]; arr[0] === -1. Actual: ' + (arr[0]));
}
//CHECK#4
-if (x.length !== 0) {
- $ERROR('#4: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); x.length === 0. Actual: ' + (x.length));
+if (x.length !== 0) {
+ $ERROR('#4: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); x.length === 0. Actual: ' + (x.length));
}
//CHECK#5
-if (x[0] !== -1) {
- $ERROR('#5: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); x[0] === -1. Actual: ' + (x[0]));
+if (x[0] !== -1) {
+ $ERROR('#5: Array.prototype[0] = -1; x = []; x.length = 1; var arr = x.splice(0,1); x[0] === -1. Actual: ' + (x[0]));
}
Object.prototype[0] = -1;
@@ -48,28 +49,28 @@ x = {};
var arr = x.splice(0,1);
//CHECK#6
-if (arr.length !== 1) {
- $ERROR('#6: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); arr.length === 1. Actual: ' + (arr.length));
+if (arr.length !== 1) {
+ $ERROR('#6: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); arr.length === 1. Actual: ' + (arr.length));
}
//CHECK#7
-if (arr[0] !== -1) {
- $ERROR('#7: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); arr[0] === -1. Actual: ' + (arr[0]));
+if (arr[0] !== -1) {
+ $ERROR('#7: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); arr[0] === -1. Actual: ' + (arr[0]));
}
delete arr[0];
//CHECK#8
-if (arr[0] !== -1) {
- $ERROR('#8: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); delete arr[0]; arr[0] === -1. Actual: ' + (arr[0]));
+if (arr[0] !== -1) {
+ $ERROR('#8: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); delete arr[0]; arr[0] === -1. Actual: ' + (arr[0]));
}
//CHECK#9
-if (x.length !== 0) {
- $ERROR('#9: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); x.length === 0. Actual: ' + (x.length));
+if (x.length !== 0) {
+ $ERROR('#9: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); x.length === 0. Actual: ' + (x.length));
}
//CHECK#10
-if (x[0] !== -1) {
- $ERROR('#10: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); x[0] === -1. Actual: ' + (x[0]));
+if (x[0] !== -1) {
+ $ERROR('#10: Object.prototype[0] = -1; Object.prototype.length = 1; Object.prototype.splice = Array.prototype.splice; x = {}; var arr = x.splice(0,1); x[0] === -1. Actual: ' + (x[0]));
}