summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/apply/call-result.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Proxy/apply/call-result.js')
-rw-r--r--js/src/tests/test262/built-ins/Proxy/apply/call-result.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Proxy/apply/call-result.js b/js/src/tests/test262/built-ins/Proxy/apply/call-result.js
new file mode 100644
index 0000000000..23175ea80b
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Proxy/apply/call-result.js
@@ -0,0 +1,25 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// 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
+description: >
+ Return the result from the trap method.
+info: |
+ [[Call]] (thisArgument, argumentsList)
+
+ 9. Return Call(trap, handler, «target, thisArgument, argArray»).
+features: [Proxy]
+---*/
+
+var result = {};
+var p = new Proxy(function() {
+ throw new Test262Error('target should not be called');
+}, {
+ apply: function(t, c, args) {
+ return result;
+ },
+});
+
+assert.sameValue(p.call(), result);
+
+reportCompare(0, 0);