Test case for bug 635636; r=roc

This commit is contained in:
Ehsan Akhgari 2011-02-21 16:58:07 -05:00
parent aa3e0ea5de
commit 8d74540d77
2 changed files with 66 additions and 0 deletions

View File

@ -93,6 +93,7 @@ _CHROME_TEST_FILES = \
test_bug490879.xul \
test_bug607584.xul \
test_bug616590.xul \
test_bug635636.html \
green.png \
$(NULL)

View File

@ -0,0 +1,65 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=635636
-->
<head>
<title>Test for Bug 635636</title>
<script type="application/javascript" src="chrome://mochikit/content/MochiKit/packed.js"></script>
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=635636">Mozilla Bug 635636</a>
<p id="display"></p>
<div id="content">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 635636 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var w, d;
function b1()
{
w = window.open('data:application/xhtml+xml,<html xmlns="http://www.w3.org/1999/xhtml"><div>1</div></html>');
SimpleTest.waitForFocus(b2, w);
}
function b2()
{
w.document.designMode = 'on';
w.location = "data:text/plain,2";
d = w.document.getElementsByTagName("div")[0];
const Ci = Components.interfaces;
var mainWindow = w.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIDocShellTreeItem)
.rootTreeItem
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindow);
var browser = mainWindow.gBrowser.selectedBrowser;
browser.addEventListener("pageshow", function() {
setTimeout(b3, 0);
}, false);
}
function b3()
{
d.parentNode.removeChild(d);
ok(true, "Should not crash");
// Not needed for the crash
w.close();
SimpleTest.finish();
}
b1();
});
</script>
</pre>
</body>
</html>