content/base/test/chrome/test_bug814638.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
michael@0 3 <?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
michael@0 4 <!--
michael@0 5 https://bugzilla.mozilla.org/show_bug.cgi?id=814638
michael@0 6 -->
michael@0 7 <window title="Mozilla Bug 814638"
michael@0 8 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
michael@0 9 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
michael@0 10
michael@0 11 <!-- test results are displayed in the html:body -->
michael@0 12 <body xmlns="http://www.w3.org/1999/xhtml">
michael@0 13 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=814638"
michael@0 14 target="_blank" id="link">Mozilla Bug 814638</a>
michael@0 15 </body>
michael@0 16
michael@0 17 <!-- test code goes here -->
michael@0 18 <script type="application/javascript">
michael@0 19 <![CDATA[
michael@0 20 /** Test for Bug 814638 **/
michael@0 21
michael@0 22 SimpleTest.waitForExplicitFinish();
michael@0 23
michael@0 24 function startTest() {
michael@0 25 let hostURL = "chrome://mochitests/content/chrome/content/base/test/chrome/host_bug814638.xul";
michael@0 26 let host1 = window.open(hostURL, "_blank", "chrome");
michael@0 27 let host2 = window.open(hostURL, "_blank", "chrome");
michael@0 28
michael@0 29 let isHost1Loaded = isHost2Loaded = false
michael@0 30 host1.onload = function() {
michael@0 31 isHost1Loaded = true;
michael@0 32 if (isHost2Loaded) swapFrames();
michael@0 33 }
michael@0 34 host2.onload = function() {
michael@0 35 isHost2Loaded = true;
michael@0 36 if (isHost1Loaded) swapFrames();
michael@0 37 }
michael@0 38
michael@0 39 function swapFrames() {
michael@0 40 let iframe1 = host1.document.querySelector("iframe");
michael@0 41 let iframe2 = host2.document.querySelector("iframe");
michael@0 42 iframe2.QueryInterface(Components.interfaces.nsIFrameLoaderOwner);
michael@0 43 iframe2.swapFrameLoaders(iframe1);
michael@0 44 setTimeout(function() {
michael@0 45 iframe2.contentWindow.receivedKeyEvent = receivedKeyEvent;
michael@0 46 let innerIframe2 = iframe2.contentDocument.querySelector("iframe");
michael@0 47 let e = innerIframe2.contentDocument.createEvent("KeyboardEvent");
michael@0 48 e.initKeyEvent("keypress", true, true, null, true, false, false, false, 0, "t".charCodeAt(0));
michael@0 49 innerIframe2.contentDocument.documentElement.dispatchEvent(e);
michael@0 50 host1.close();
michael@0 51 host2.close();
michael@0 52 }, 0);
michael@0 53 }
michael@0 54 }
michael@0 55
michael@0 56 function receivedKeyEvent() {
michael@0 57 ok(true, "Received key event");
michael@0 58 SimpleTest.finish();
michael@0 59 }
michael@0 60
michael@0 61 addLoadEvent(startTest);
michael@0 62 ]]>
michael@0 63 </script>
michael@0 64 </window>

mercurial