summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/346512-1.xhtml
blob: 1c8b6ba6dc7dd90c4f1a69f8a3f077f81b2894a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>