Improving readability.

git-svn-id: svn://10.0.0.236/trunk@131620 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pschwartau%netscape.com
2002-10-09 20:43:35 +00:00
parent c80f2ce036
commit 5266477dc7

View File

@@ -50,10 +50,16 @@ var actualvalues = [];
var expect= '';
var expectedvalues = [];
/*
* The patch for http://bugzilla.mozilla.org/show_bug.cgi?id=172699
* defined this value to be the result of an overlong UTF-8 sequence -
*/
var INVALID_CHAR = 0xFFFD;
status = inSection(1);
actual = decodeURI("%C0%AF").charCodeAt(0);
expect = 65533; // this is 0xFFFD
expect = INVALID_CHAR;
addThis();