Add moving-between-frames crashtest

This commit is contained in:
jruderman@hmc.edu 2008-01-04 22:54:28 -08:00
parent eff78c805a
commit acec28b307
4 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<div id="empty1"></div>
<div id="movemychild"><hbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/></div>
</body>
</html>

View File

@ -0,0 +1,15 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<div id="empty2"></div>
</body>
</html>

View File

@ -0,0 +1,30 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
<![CDATA[
function foopy()
{
var doc1 = document.getElementById("doc1").contentDocument;
var doc2 = document.getElementById("doc2").contentDocument;
var empty2 = doc2.getElementById("empty2");
var hbox1 = doc1.getElementById("movemychild").firstChild;
var empty1 = doc1.getElementById("empty1");
aC(empty2, doc2.adoptNode(hbox1));
aC(empty1, doc1.adoptNode(empty2));
}
function aC(q,r) { q.appendChild(r); }
]]>
</script>
</head>
<body onload="foopy();">
<iframe id="doc1" src="346512-1-frame1.xhtml" />
<iframe id="doc2" src="346512-1-frame2.xhtml" />
</body>
</html>

View File

@ -1,2 +1,3 @@
load 326615-1.html
load 346512-1.xhtml
load 382133-1.html