diff -r 000000000000 -r 6474c204b198 intl/uconv/tests/unit/test_bug116882.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/intl/uconv/tests/unit/test_bug116882.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,13 @@ +/* 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\ufffd \ufffd?\ufffd<"; +const charset = "Shift_JIS"; + +load('CharsetConversionTests.js'); + +function run_test() { + checkDecode(CreateScriptableConverter(), charset, inText, expectedText); +}