summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.js b/js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.js
new file mode 100644
index 0000000000..a2506137ba
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T2.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.
+
+/*---
+info: "CharacterEscape :: c ControlLetter"
+es5id: 15.10.2.10_A2.1_T2
+description: "ControlLetter :: a - z"
+---*/
+
+var result = true;
+for (var alpha = 0x0061; alpha <= 0x007A; alpha++) {
+ var str = String.fromCharCode(alpha % 32);
+ var arr = (new RegExp("\\c" + String.fromCharCode(alpha))).exec(str);
+ if ((arr === null) || (arr[0] !== str)) {
+ result = false;
+ }
+}
+
+assert.sameValue(result, true, 'The value of result is expected to be true');
+
+reportCompare(0, 0);