Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
function run_test() {
{ wantGlobalProperties: ["TextDecoder", "TextEncoder"] });
sb.equal = equal;
Cu.evalInSandbox('equal(new TextDecoder().encoding, "utf-8");' +
'equal(new TextEncoder().encoding, "utf-8");',
sb);
Cu.importGlobalProperties(["TextDecoder", "TextEncoder"]);
Assert.equal(new TextDecoder().encoding, "utf-8");
Assert.equal(new TextEncoder().encoding, "utf-8");
}