Adding comments.

This commit is contained in:
pschwartau%netscape.com 2003-11-16 23:10:49 +00:00
parent 2954f1e1c9
commit 24d46ce950

View File

@ -126,7 +126,7 @@ pattern = /((?:a|[^a])*)/g;
status = inSection(10);
string = 'a';
actualmatch = string.match(pattern);
expectedmatch = Array('a', '');
expectedmatch = Array('a', ''); // see bug 225289 comment 6
addThis();
status = inSection(11);
@ -138,7 +138,7 @@ pattern = /((?:a|[^a])*)/g;
status = inSection(12);
string = '()';
actualmatch = string.match(pattern);
expectedmatch = Array('()', '');
expectedmatch = Array('()', ''); // see bug 225289 comment 6
addThis();