summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_2/regexp/toString.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/js1_2/regexp/toString.js')
-rw-r--r--js/src/tests/js1_2/regexp/toString.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/js/src/tests/js1_2/regexp/toString.js b/js/src/tests/js1_2/regexp/toString.js
new file mode 100644
index 000000000..e6b6cc883
--- /dev/null
+++ b/js/src/tests/js1_2/regexp/toString.js
@@ -0,0 +1,47 @@
+/* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+
+/**
+ Filename: toString.js
+ Description: 'Tests RegExp method toString'
+
+ Author: Nick Lerissa
+ Date: March 13, 1998
+*/
+
+var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
+var VERSION = 'no version';
+startTest();
+var TITLE = 'RegExp: toString';
+
+writeHeaderToLog('Executing script: toString.js');
+writeHeaderToLog( SECTION + " "+ TITLE);
+
+
+/*
+ * var re = new RegExp(); re.toString() For what to expect,
+ * see http://bugzilla.mozilla.org/show_bug.cgi?id=225343#c7
+ */
+var re = new RegExp();
+new TestCase ( SECTION, "var re = new RegExp(); re.toString()",
+ '/(?:)/', re.toString());
+
+// re = /.+/; re.toString();
+re = /.+/;
+new TestCase ( SECTION, "re = /.+/; re.toString()",
+ '/.+/', re.toString());
+
+// re = /test/gi; re.toString()
+re = /test/gi;
+new TestCase ( SECTION, "re = /test/gi; re.toString()",
+ '/test/gi', re.toString());
+
+// re = /test2/ig; re.toString()
+re = /test2/ig;
+new TestCase ( SECTION, "re = /test2/ig; re.toString()",
+ '/test2/gi', re.toString());
+
+test();