mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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);
|
|
}
|