Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: appname == 'thunderbird' OR os == 'android' OR os == 'mac' && debug OR socketprocess_networking && fission OR ccov && os == 'linux' OR os == 'linux' && socketprocess_networking && !fission && debug
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell-e10s.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-content.toml
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell-remote.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-content.toml
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-content.toml
"use strict";
// ExtensionContent.sys.mjs needs to know when it's running from xpcshell,
// to use the right timeout for content scripts executed at document_idle.
ExtensionTestUtils.mockAppInfo();
const server = createHttpServer();
server.registerDirectory("/data/", do_get_file("data"));
add_task(async function test_contentscript_shadowDOM() {
function backgroundScript() {
browser.test.assertTrue(
"openOrClosedShadowRoot" in document.documentElement,
"Should have openOrClosedShadowRoot in Element in background script."
);
}
function contentScript() {
let host = document.getElementById("host");
browser.test.assertTrue(
"openOrClosedShadowRoot" in host,
"Should have openOrClosedShadowRoot in Element."
);
let shadowRoot = host.openOrClosedShadowRoot;
browser.test.assertEq(
shadowRoot.mode,
"closed",
"Should have closed ShadowRoot."
);
browser.test.sendMessage("contentScript");
}
let extension = ExtensionTestUtils.loadExtension({
manifest: {
content_scripts: [
{
js: ["content_script.js"],
},
],
},
background: backgroundScript,
files: {
"content_script.js": contentScript,
},
});
await extension.startup();
let contentPage = await ExtensionTestUtils.loadContentPage(
`${BASE_URL}/file_shadowdom.html`
);
await extension.awaitMessage("contentScript");
await contentPage.close();
await extension.unload();
});