gecko-dev/widget/tests/chrome_context_menus_win.xul
Brian Grinstead 911776d674 Bug 1544322 - Part 3 - Remove the [type] attribute for multiline <script> tags loading files in chrome://mochikit/content/ r=bzbarsky
This is an autogenerated commit to handle scripts loading mochitest harness files, in
the case where the script src is on the line below the script tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 3` argument.

Differential Revision: https://phabricator.services.mozilla.com/D27458

--HG--
extra : moz-landing-system : lando
2019-04-16 03:59:25 +00:00

99 lines
2.7 KiB
XML

<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window id="ChromeContextMenuTest"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
width="300"
height="300"
title="Chrome Context Menu Test w/Plugin Focus">
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
<script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
<popupset>
<menupopup id="testmenu" onpopupshown="menuDisplayed()">
<menuitem label="One"/>
<menuitem label="Two"/>
<menuitem label="Three"/>
</menupopup>
</popupset>
<toolbox>
<toolbar id="nav-toolbar" style="height:30px" context="testmenu">
</toolbar>
</toolbox>
<script type="application/javascript"><![CDATA[
function ok(condition, message) {
window.opener.wrappedJSObject.SimpleTest.ok(condition, message);
}
function onTestsFinished() {
window.close();
window.opener.wrappedJSObject.SimpleTest.finish();
}
function openContextMenuFor(element) {
var utils = window.windowUtils;
var tbX = (window.mozInnerScreenX + 10) * utils.screenPixelsPerCSSPixel;
var tbY = (window.mozInnerScreenY + 10) * utils.screenPixelsPerCSSPixel;
// See nsWidnow's SynthesizeNativeMouseEvent & SendInput on msdn
var MOUSEEVENTF_RIGHTDOWN = 0x0008;
var MOUSEEVENTF_RIGHTUP = 0x0010;
utils.sendNativeMouseEvent(tbX, tbY,
MOUSEEVENTF_RIGHTDOWN,
0, element);
utils.sendNativeMouseEvent(tbX, tbY,
MOUSEEVENTF_RIGHTUP,
0, element);
}
var tid = 0;
function onFocus() {
var _delayedOnLoad = function() {
var plugin = document.getElementById("plugin");
var toolbar = document.getElementById("nav-toolbar");
plugin.focus();
tid = setTimeout("menuTimeout()", 5000);
openContextMenuFor(toolbar);
}
setTimeout(_delayedOnLoad, 3000);
}
function menuTimeout() {
ok(false, "Right-click chrome menu did not display with focus on a plugin.");
onTestsFinished();
}
function menuDisplayed() {
clearTimeout(tid);
ok(true, "Right-click chrome menu displayed despite plugin having focus.");
onTestsFinished();
}
window.opener.wrappedJSObject.SimpleTest.waitForFocus(onFocus, window);
]]></script>
<body xmlns="http://www.w3.org/1999/xhtml">
<br/>
<embed id="plugin" type="application/x-test" width="50" height="50"></embed>
</body>
</window>