summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js')
-rw-r--r--js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js b/js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js
new file mode 100644
index 0000000000..321612c888
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/fromCharCode/S15.5.3.2_A4.js
@@ -0,0 +1,25 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: String.fromCharCode has not [[construct]] method
+es5id: 15.5.3.2_A4
+description: Checking if creating "new String.fromCharCode" fails
+---*/
+
+var __fcc__func = String.fromCharCode;
+
+delete String.fromCharCode;
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+try {
+ var __obj = new __fcc__func(65, 66, 66, 65);
+ throw new Test262Error('#1: __fcc__func = String.fromCharCode; var __obj = new __fcc__func(65,66,66,65) lead to throwing exception');
+} catch (e) {
+ if (e instanceof Test262Error) throw e;
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+reportCompare(0, 0);