-1:000000000000 | 0:c696ff41f4c5 |
---|---|
1 // Tests conversion from Unicode to ISO-2022-JP | |
2 | |
3 load('CharsetConversionTests.js'); | |
4 | |
5 const inString = "\u3042\u3044\u3046\u3048\u304A\u000D\u000A\u304B\u304D\u304F\u3051\u3053"; | |
6 | |
7 const expectedString = "\x1B$B$\"$$$&$($*\x1B(B\x0D\x0A\x1B$B$+$-$/$1$3\x1B(B"; | |
8 | |
9 const charset = "ISO-2022-JP"; | |
10 | |
11 function run_test() | |
12 { | |
13 checkEncode(CreateScriptableConverter(), charset, inString, expectedString); | |
14 } |