forked from mirrors/gecko-dev
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951 --HG-- extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
6 lines
229 B
JavaScript
6 lines
229 B
JavaScript
var EXPORTED_SYMBOLS = ["checkFromJSM"];
|
|
|
|
function checkFromJSM(is_op) {
|
|
is_op(new TextDecoder().encoding, "utf-8", "JSM should have TextDecoder");
|
|
is_op(new TextEncoder().encoding, "utf-8", "JSM should have TextEncoder");
|
|
}
|