mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 962767 - Testcase for docshell swapping with message manager (r=smaug)
This commit is contained in:
parent
0a3cc5736a
commit
ecf12de47d
@ -19,6 +19,7 @@ support-files =
|
||||
selectAtPoint.html
|
||||
window_activation.xul
|
||||
window_callback_wrapping.xul
|
||||
window_docshell_swap.xul
|
||||
window_focus.xul
|
||||
window_focus_docnav.xul
|
||||
|
||||
@ -32,6 +33,7 @@ support-files =
|
||||
[test_callback_wrapping.xul]
|
||||
[test_clonewrapper.xul]
|
||||
[test_cyclecollector.xul]
|
||||
[test_docshell_swap.xul]
|
||||
[test_focus.xul]
|
||||
[test_focus_docnav.xul]
|
||||
[test_focus_switchbinding.xul]
|
||||
|
76
dom/tests/mochitest/chrome/test_docshell_swap.xul
Normal file
76
dom/tests/mochitest/chrome/test_docshell_swap.xul
Normal file
@ -0,0 +1,76 @@
|
||||
<?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="Docshell swap test"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
|
||||
|
||||
<!-- test results are displayed in the html:body -->
|
||||
<body xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
</body>
|
||||
|
||||
<!-- test code goes here -->
|
||||
<script type="application/javascript">
|
||||
<![CDATA[
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
// Create two identical windows, each with a <browser> element.
|
||||
let win1 = window.openDialog("window_docshell_swap.xul", "_blank","chrome,width=300,height=200");
|
||||
let win2 = window.openDialog("window_docshell_swap.xul", "_blank","chrome,width=300,height=200");
|
||||
|
||||
let loadCount = 0;
|
||||
function loadHandler() {
|
||||
loadCount++;
|
||||
if (loadCount < 2)
|
||||
return;
|
||||
|
||||
let browser1 = win1.document.getElementById("browser");
|
||||
let browser2 = win2.document.getElementById("browser");
|
||||
|
||||
let flo1 = browser1.QueryInterface(Components.interfaces.nsIFrameLoaderOwner);
|
||||
let flo2 = browser2.QueryInterface(Components.interfaces.nsIFrameLoaderOwner);
|
||||
|
||||
let pongCount = 0;
|
||||
|
||||
function gotPong(target_ok) {
|
||||
pongCount++;
|
||||
ok(target_ok, "message went to correct target");
|
||||
if (pongCount == 1) {
|
||||
win1.close();
|
||||
win2.close();
|
||||
SimpleTest.finish();
|
||||
}
|
||||
}
|
||||
|
||||
let mm1 = flo1.frameLoader.messageManager;
|
||||
let mm2 = flo2.frameLoader.messageManager;
|
||||
mm1.addMessageListener("pong", () => { gotPong(true); });
|
||||
mm2.addMessageListener("pong", () => { gotPong(false); });
|
||||
|
||||
// Swap docshells. Everything should be identical to before, since there was nothing to
|
||||
// distinguish these docshells.
|
||||
flo1.swapFrameLoaders(flo2);
|
||||
|
||||
// mm1 shouldn't change here, but we update it in case it does due to a bug.
|
||||
mm1 = flo1.frameLoader.messageManager;
|
||||
|
||||
// Load ping-pong code into first window.
|
||||
mm1.loadFrameScript("data:,addMessageListener('ping', () => sendAsyncMessage('pong'));", false);
|
||||
|
||||
// A pong message received in win1 means success.
|
||||
win1.messageManager.addMessageListener("pong", () => { gotPong(true); });
|
||||
|
||||
// A pong message received in win2 means failure!
|
||||
win2.messageManager.addMessageListener("pong", () => { gotPong(false); });
|
||||
|
||||
// Send the ping to win1.
|
||||
mm1.sendAsyncMessage("ping");
|
||||
}
|
||||
|
||||
win1.addEventListener("load", loadHandler, false);
|
||||
win2.addEventListener("load", loadHandler, false);
|
||||
]]>
|
||||
</script>
|
||||
</window>
|
8
dom/tests/mochitest/chrome/window_docshell_swap.xul
Normal file
8
dom/tests/mochitest/chrome/window_docshell_swap.xul
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
||||
|
||||
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<browser type="content" src="about:blank" id="browser"/>
|
||||
|
||||
</window>
|
Loading…
Reference in New Issue
Block a user