mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
11 lines
365 B
JavaScript
11 lines
365 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
Cu.import("resource://services-common/utils.js");
|
|
|
|
function run_test() {
|
|
let str = "Umlaute: \u00FC \u00E4\n"; // Umlaute: ü ä
|
|
let encoded = CommonUtils.encodeUTF8(str);
|
|
let decoded = CommonUtils.decodeUTF8(encoded);
|
|
do_check_eq(decoded, str);
|
|
}
|