!! Not part of the build !!

Fixed some typo's
This commit is contained in:
rogerl%netscape.com 2000-01-26 01:29:51 +00:00
parent 6ebd149e8e
commit a286b8fb4a
3 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@ function test()
printStatus ("Unicode format-control character (Category Cf) test.");
printBugNumber (23610);
reportCompare ("no error", eval('no\u200E4 error'),
reportCompare ("no error", eval('"no\u200E error"'),
"Unicode format-control character test (Category Cf.)");
exitFunc ("test");

View File

@ -36,7 +36,7 @@ function test()
var str = "\u00A0foo";
reportCompare (0, str.search(/^\sfoo$/),
"Unicode non-breaking space character regexp test."););
"Unicode non-breaking space character regexp test.");
exitFunc ("test");
}

View File

@ -37,15 +37,15 @@ function test()
reportCompare (5, eval("\u0041"),
"Escaped ASCII Identifier test.");
reportCompare (6, eval("\u0041++"),
reportCompare (6, eval("++\u0041"),
"Escaped ASCII Identifier test");
reportCompare (15, eval("A\u03B2"),
"Escaped non-ASCII Identifier test");
reportCompare (16, eval("A\u03B2++"),
reportCompare (16, eval("++A\u03B2"),
"Escaped non-ASCII Identifier test");
reportCompare (25, eval("A\u03B2"),
reportCompare (25, eval("c\u0061se"),
"Escaped keyword Identifier test");
reportCompare (26, eval("A\u03B2++"),
reportCompare (26, eval("++c\u0061se"),
"Escaped keyword Identifier test");
exitFunc ("test");