mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 06:22:20 +00:00
!! Not part of the build !!
Fixed some typo's
This commit is contained in:
parent
6ebd149e8e
commit
a286b8fb4a
@ -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");
|
||||
|
@ -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");
|
||||
}
|
||||
|
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user