Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: intl/uconv/tests/unit/xpcshell.toml
/* Tests conversion of undefined and illegal sequences from Shift-JIS
*/
const inText = "\xfd\xfe\xff\x81\x20\x81\x3f\x86\x3c";
const expectedText = "\ufffd\ufffd\ufffd\ufffd \ufffd?\ufffd<";
const charset = "Shift_JIS";
function run_test() {
checkDecode(CreateScriptableConverter(), charset, inText, expectedText);
}