mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
// Tests conversion of a single byte from UTF-16 to Unicode
|
|
|
|
load('CharsetConversionTests.js');
|
|
|
|
const inString = "A";
|
|
const expectedString = "\ufffd";
|
|
const charset = "UTF-16BE";
|
|
|
|
function run_test() {
|
|
checkDecode(CreateScriptableConverter(), charset, inString, expectedString);
|
|
}
|