test_bug396637.js (242B)
1 // Tests conversion of a single byte from UTF-16 to Unicode 2 3 const inString = "A"; 4 const expectedString = ""; 5 const charset = "UTF-16BE"; 6 7 function run_test() { 8 checkDecode(CreateScriptableConverter(), charset, inString, expectedString); 9 }