Source code

Revision control

Copy as Markdown

Other Tools

/**
* Load a given URL in the currently selected tab
*/
async function loadURL(url, expectedURL = undefined) {
expectedURL = expectedURL || url;
const browser = gBrowser.selectedTab.linkedBrowser;
const loaded = BrowserTestUtils.browserLoaded(browser, true, expectedURL);
BrowserTestUtils.startLoadingURIString(browser, url);
await loaded;
}
/** Creates an inline URL for the given source document. */
function inline(src, doctype = "html") {
let doc;
switch (doctype) {
case "html":
doc = `<!doctype html>\n<meta charset=utf-8>\n${src}`;
break;
default:
throw new Error("Unexpected doctype: " + doctype);
}
doc
)}`;
}