Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<?xml version="1.0"?>
<window title="XUL ShadowDOM accesskey"
<a target="_blank" rel="opener"
title="XUL ShadowDOM accesskey">
</a>
<div id="container" style="position: relative"></div>
</body>
<!-- Tests code -->
<script type="application/javascript">
<![CDATA[
const container = document.getElementById("container");
function pressAccessKey(accessKey){
synthesizeKey(accessKey, navigator.platform.includes("Mac") ? { altKey: true, ctrlKey: true }
: { altKey: true, shiftKey: true });
}
function testAccesskeyInShadowTree(mode) {
add_task(async () => {
const host = document.createXULElement("div");
container.appendChild(host);
const shadowRoot = host.attachShadow({mode})
const button = document.createXULElement("button");
button.innerText = "Click Me";
button.setAttribute("accesskey", "g");
shadowRoot.appendChild(button);
// Trigger frame construction which is constructed lazily on XUL Element.
button.getBoundingClientRect();
let isClickFired = false;
button.addEventListener("click", function(e) {
isClickFired = true;
}, { once: true });
pressAccessKey("g");
ok(isClickFired, `button element with accesskey in the shadow tree of ${mode} mode`);
host.remove();
});
}
testAccesskeyInShadowTree("open");
testAccesskeyInShadowTree("closed");
]]>
</script>
</window>