summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/chrome/file_bug800817.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/chrome/file_bug800817.xhtml')
-rw-r--r--dom/tests/mochitest/chrome/file_bug800817.xhtml79
1 files changed, 79 insertions, 0 deletions
diff --git a/dom/tests/mochitest/chrome/file_bug800817.xhtml b/dom/tests/mochitest/chrome/file_bug800817.xhtml
new file mode 100644
index 0000000000..bcd64b3ca7
--- /dev/null
+++ b/dom/tests/mochitest/chrome/file_bug800817.xhtml
@@ -0,0 +1,79 @@
+<?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=800817
+-->
+<window title="Mozilla Bug 800817"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+ <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=800817"
+ target="_blank">Mozilla Bug 800817</a>
+ </body>
+
+ <!-- test code goes here -->
+ <script type="application/javascript">
+ <![CDATA[
+ /** Test for Bug 800817 **/
+
+ function sendClick(win) {
+ var wu = win.windowUtils;
+ wu.sendMouseEventToWindow("mousedown", 10, 10, 0, 0, 0);
+ wu.sendMouseEventToWindow("mouseup", 10, 10, 0, 0, 0);
+ }
+
+ function runTests() {
+ var b1 = document.getElementById("b1");
+ var b2 = document.getElementById("b2");
+
+ var testMozBrowser = window.arguments[0].testMozBrowser;
+ if (testMozBrowser) {
+ b1.setAttribute("mozbrowser", "true");
+ b2.setAttribute("mozbrowser", "true");
+ }
+
+ if (testMozBrowser)
+ window.arguments[0].info("Testing with mozbrowser=true");
+ else
+ window.arguments[0].info("Testing without mozbrowser");
+
+ b1.contentWindow.focus();
+ window.arguments[0].is(document.activeElement, b1,
+ "Focused first iframe");
+
+ var didCallDummy = false;
+ b2.contentWindow.addEventListener("mousedown", function(e) { didCallDummy = true; });
+ sendClick(b2.contentWindow);
+ window.arguments[0].ok(didCallDummy, "dummy mousedown handler should fire");
+ window.arguments[0].is(document.activeElement, b2,
+ "Focus shifted to second iframe");
+
+ b1.contentWindow.focus();
+ window.arguments[0].is(document.activeElement, b1,
+ "Re-focused first iframe for the first time");
+
+ var didCallListener = false;
+ b2.contentWindow.addEventListener("mousedown", function(e) { didCallListener = true; e.preventDefault(); });
+ sendClick(b2.contentWindow);
+ window.arguments[0].ok(didCallListener, "mousedown handler should fire");
+ window.arguments[0].is(document.activeElement, b1,
+ "Did not move focus to the second iframe");
+
+ window.close();
+ window.arguments[0].finishedTests();
+ }
+
+ SimpleTest.waitForFocus(runTests);
+ ]]>
+ </script>
+ <iframe xmlns="http://www.w3.org/1999/xhtml"
+ id="b1" type="content" src="about:blank"
+ style="width: 300px; height: 550px; border: 1px solid black;"/>
+ <iframe xmlns="http://www.w3.org/1999/xhtml"
+ id="b2" type="content" src="about:blank"
+ style="width: 300px; height: 550px; border: 1px solid black;"/>
+</window>