Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
-->
<window title="Mozilla Bug 467442"
onload="onload()"
<!-- test code goes here -->
<popupset>
<panel id="panel">
Hello.
</panel>
</popupset>
<hbox>
<button id="anchor" label="Anchor hello on here" style="transform: translate(100px, 0)"/>
</hbox>
<script type="application/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
function onload() {
/** Test for Bug 467442 **/
let panel = document.getElementById("panel");
let anchor = document.getElementById("anchor");
panel.addEventListener("popupshown", function onpopupshown() {
let panelRect = panel.getBoundingClientRect();
let marginLeft = parseFloat(getComputedStyle(panel).marginLeft);
let anchorRect = anchor.getBoundingClientRect();
is(panelRect.left - marginLeft, anchorRect.left, "Panel should be anchored to the button");
panel.addEventListener("popuphidden", function onpopuphidden() {
SimpleTest.finish();
}, { once: true });
panel.hidePopup();
}, { once: true });
panel.openPopup(anchor, "after_start", 0, 0, false, false);
}
]]>
</script>
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 467442</a>
</body>
</window>