Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* Tests conversion from Unicode to HZ-GB-2312 (bug 367026)
2 *
3 * Notes:
4 * HZ-GB-2312 is a 7-bit encoding of the GB2312 simplified Chinese character
5 * set. It uses the escape sequences "~{" to mark the start of GB encoded text
6 * and "~}" to mark the end.
7 *
8 * See http://www.ietf.org/rfc/rfc1843.txt
9 */
11 load('CharsetConversionTests.js');
13 const inASCII = "Hello World";
14 const inHanzi = "\u4E00";
15 const inMixed = "Hello \u4E00 World";
17 const expectedASCII = "Hello World";
18 const expectedHanzi = "~{R;~}";
19 const expectedMixed = "Hello ~{R;~} World";
21 const charset = "HZ-GB-2312";
23 function run_test() {
24 var converter = CreateScriptableConverter();
26 checkEncode(converter, charset, inASCII, expectedASCII);
27 checkEncode(converter, charset, inMixed, expectedMixed);
28 checkEncode(converter, charset, inHanzi, expectedHanzi);
29 }