This commit is contained in:
pschwartau%netscape.com 2003-11-16 23:10:49 +00:00
Родитель f2a72a36e5
Коммит f09b57b94f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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();