summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js
index b0799cf00..23fa06219 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T4.js
@@ -10,7 +10,10 @@ description: thisArg is function variable that return this
flags: [noStrict]
---*/
-var f = function(){this.touched= true; return this;};
+var f = function() {
+ this.touched = true;
+ return this;
+};
var retobj = f.call(obj);