Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { BrowserLoader } = ChromeUtils.importESModule(
);
const { require: browserRequire } = BrowserLoader({
window,
});
const variableFileContents = browserRequire(
);
function test() {
ok(!!variableFileContents.length, "raw browserRequire worked");
delete window.getBrowserLoaderForWindow;
finish();
}