summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js b/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js
new file mode 100644
index 0000000000..6a3d1fc9dd
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A1.js
@@ -0,0 +1,23 @@
+// Copyright 2011 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: "\"caller\" of bound function is poisoned (step 20)"
+es5id: 15.3.4.5_A1
+description: A bound function should fail to find its "caller"
+---*/
+
+function foo() {
+ return bar.caller;
+}
+var bar = foo.bind({});
+
+function baz() {
+ return bar();
+}
+
+assert.throws(TypeError, function() {
+ baz();
+}, 'baz() throws a TypeError exception');
+
+reportCompare(0, 0);