summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js')
-rw-r--r--test/built-ins/Array/prototype/forEach/15.4.4.18-7-b-3.js37
1 files changed, 20 insertions, 17 deletions
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 71abd46a0..d949efd18 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
@@ -9,26 +9,29 @@ description: >
here
---*/
- var accessed = false;
- var testResult = true;
+var accessed = false;
+var testResult = true;
- function callbackfn(val, idx, obj) {
- accessed = true;
- if (idx === 8) {
- testResult = false;
- }
- }
- var obj = { 2: 6.99, 8: 19 };
+function callbackfn(val, idx, obj) {
+ accessed = true;
+ if (idx === 8) {
+ testResult = false;
+ }
+}
+var obj = {
+ 2: 6.99,
+ 8: 19
+};
- Object.defineProperty(obj, "length", {
- get: function () {
- delete obj[8];
- return 10;
- },
- configurable: true
- });
+Object.defineProperty(obj, "length", {
+ get: function() {
+ delete obj[8];
+ return 10;
+ },
+ configurable: true
+});
- Array.prototype.forEach.call(obj, callbackfn);
+Array.prototype.forEach.call(obj, callbackfn);
assert(testResult, 'testResult !== true');
assert(accessed, 'accessed !== true');