From f06074305ebce9d616c8ace46ea6d8ffb5d7f1b8 Mon Sep 17 00:00:00 2001 From: "pschwartau%netscape.com" Date: Fri, 2 Aug 2002 00:13:00 +0000 Subject: [PATCH] Adding a comment git-svn-id: svn://10.0.0.236/trunk@126195 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/tests/ecma_3/RegExp/octal-001.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mozilla/js/tests/ecma_3/RegExp/octal-001.js b/mozilla/js/tests/ecma_3/RegExp/octal-001.js index fc27222dd79..34b3e34655c 100644 --- a/mozilla/js/tests/ecma_3/RegExp/octal-001.js +++ b/mozilla/js/tests/ecma_3/RegExp/octal-001.js @@ -62,6 +62,11 @@ actualmatch = string.match(pattern); expectedmatch = null; addThis(); +/* + * In the following sections, we test the octal escape sequence '\052'. + * This is character code 42, representing the asterisk character '*'. + * The Unicode escape for it would be '\u002A', the hex escape '\x2A'. + */ status = inSection(2); pattern = /ab\052c/; string = 'ab*c';