gecko/intl/uconv/tests/unit/test_bug116882.js

14 lines
388 B
JavaScript
Raw Normal View History

2008-09-03 12:46:32 -07:00
/* Tests conversion of undefined and illegal sequences from Shift-JIS
* to Unicode (bug 116882)
*/
const inText = "\xfd\xfe\xff\x81\x20\x81\x3f\x86\x3c";
const expectedText = "\uf8f1\uf8f2\uf8f3\u30fb\u30fb\u30fb";
const charset = "Shift_JIS";
load('CharsetConversionTests.js');
2008-09-03 12:46:32 -07:00
function run_test() {
checkDecode(CreateScriptableConverter(), charset, inText, expectedText);
2008-09-03 12:46:32 -07:00
}