Correcting a misattribution, and improving readability.

This commit is contained in:
pschwartau%netscape.com 2001-07-09 01:09:27 +00:00
Родитель 844089d849
Коммит bce61b5cdb
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -24,12 +24,12 @@
* See http://bugzilla.mozilla.org/show_bug.cgi?id=89474
*
* This test used to crash the JS shell. This was discovered
* by Mike Epstein <darren.deridder@icarusproject.com
* by Darren DeRidder <darren.deridder@icarusproject.com
*/
//-------------------------------------------------------------------------------------------------
var bug = 89474;
var summary = "Testing the JS shell doesn't crash on it.item()";
var sTest = 'it.item()';
var cnTest = 'it.item()';
//-------------------------------------------------------------------------------------------------
@ -43,7 +43,7 @@ function test()
printBugNumber (bug);
printStatus (summary);
tryThis(sTest); // Just testing that we don't crash on this
tryThis(cnTest); // Just testing that we don't crash on this
exitFunc ('test');
}