1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
<?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"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=987230
-->
<window title="Mozilla Bug 987230"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="SimpleTest.waitForFocus(startTest, window)">
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>
<!-- test results are displayed in the html:body -->
<body xmlns="http://www.w3.org/1999/xhtml">
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=987230"
target="_blank">Mozilla Bug 987230</a>
</body>
<vbox>
<toolbar>
<toolbarbutton id="toolbarbutton-anchor"
label="Anchor"
consumeanchor="toolbarbutton-anchor"
onclick="onAnchorClick(event)"
style="padding: 50px !important; list-style-image: url(chrome://branding/content/icon32.png)"/>
</toolbar>
<spacer flex="1"/>
<hbox id="hbox-anchor"
style="padding: 20px"
onclick="onAnchorClick(event)">
<hbox id="inner-anchor"
consumeanchor="hbox-anchor"
>
Another anchor
</hbox>
</hbox>
<spacer flex="1"/>
</vbox>
<panel id="mypopup"
type="arrow"
onpopupshown="onMyPopupShown(event)"
onpopuphidden="onMyPopupHidden(event)">This is a test popup</panel>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 987230 */
SimpleTest.waitForExplicitFinish();
SimpleTest.requestCompleteLog();
function onMyPopupHidden(e) {
ok(true, "Popup hidden");
if (outerAnchor.id == "toolbarbutton-anchor") {
popupHasShown = false;
outerAnchor = document.getElementById("hbox-anchor");
anchor = document.getElementById("inner-anchor");
nextTest();
} else {
//XXXgijs set mouse position back outside the iframe:
let frameRect = window.frameElement.getBoundingClientRect();
let scale = window.devicePixelRatio;
let outsideOfFrameX = (window.mozInnerScreenX + frameRect.width + 100) * scale;
let outsideOfFrameY = Math.max(0, window.mozInnerScreenY - 100) * scale;
info("Mousemove: " + outsideOfFrameX + ", " + outsideOfFrameY +
" (from innerscreen " + window.mozInnerScreenX + ", " + window.mozInnerScreenY +
" and rect width " + frameRect.width + " and scale " + scale + ")");
synthesizeNativeMouseEvent({
type: "mousemove",
screenX: outsideOfFrameX,
screenY: outsideOfFrameY,
scale: "inScreenPixels",
elementOnWidget: null,
});
SimpleTest.finish();
}
}
let popupHasShown = false;
function onMyPopupShown(e) {
popupHasShown = true;
synthesizeNativeMouseEvent({ type: "click", target: outerAnchor, offsetX: 5, offsetY: 5 });
}
function onAnchorClick(e) {
info("click: " + e.target.id);
ok(!popupHasShown, "Popup should only be shown once");
popup.openPopup(anchor, "bottomcenter topright");
}
let popup, outerAnchor, anchor;
function startTest() {
popup = document.getElementById("mypopup");
outerAnchor = document.getElementById("toolbarbutton-anchor");
anchor = outerAnchor.icon;
nextTest();
}
function nextTest(e) {
synthesizeMouse(outerAnchor, 5, 5, {});
}
]]>
</script>
</window>
|