Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
function run_test() {
{ wantGlobalProperties: ["FileReader"] });
sb.ok = ok;
Cu.evalInSandbox('ok((new FileReader()) instanceof FileReader);',
sb);
Cu.importGlobalProperties(["FileReader"]);
Assert.ok((new FileReader()) instanceof FileReader);
}