summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js')
-rw-r--r--js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js b/js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js
new file mode 100644
index 000000000..abf9833c5
--- /dev/null
+++ b/js/src/tests/test262/ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js
@@ -0,0 +1,21 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * RegularExpressionChar :: LineTerminator is incorrect
+ *
+ * @path ch07/7.8/7.8.5/S7.8.5_A2.3_T6.js
+ * @description Paragraph separator, with eval
+ */
+
+//CHECK#1
+try {
+ eval("/s\u2029/").source;
+ $ERROR('#1.1: RegularExpressionChar :: Paragraph separator is incorrect. Actual: ' + (eval("/s\u2029/").source));
+}
+catch (e) {
+ if ((e instanceof SyntaxError) !== true) {
+ $ERROR('#1.2: RegularExpressionChar :: Paragraph separator is incorrect. Actual: ' + (e));
+ }
+}
+