summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/some/15.4.4.17-2-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/some/15.4.4.17-2-3.js')
-rw-r--r--test/built-ins/Array/prototype/some/15.4.4.17-2-3.js30
1 files changed, 14 insertions, 16 deletions
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 f663fb274..d2ef52b08 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
@@ -9,26 +9,24 @@ description: >
overrides an inherited data property on an Array-like object
---*/
-function callbackfn1(val, idx, obj) {
- return val > 10;
-}
+ function callbackfn1(val, idx, obj) {
+ return val > 10;
+ }
-function callbackfn2(val, idx, obj) {
- return val > 11;
-}
+ function callbackfn2(val, idx, obj) {
+ return val > 11;
+ }
-var proto = {
- length: 3
-};
+ var proto = { length: 3 };
-var Con = function() {};
-Con.prototype = proto;
+ var Con = function () { };
+ Con.prototype = proto;
-var child = new Con();
-child.length = 2;
-child[0] = 9;
-child[1] = 11;
-child[2] = 12;
+ var child = new Con();
+ child.length = 2;
+ child[0] = 9;
+ child[1] = 11;
+ child[2] = 12;
assert(Array.prototype.some.call(child, callbackfn1), 'Array.prototype.some.call(child, callbackfn1) !== true');
assert.sameValue(Array.prototype.some.call(child, callbackfn2), false, 'Array.prototype.some.call(child, callbackfn2)');