js/xpconnect/crashtests/346512-1.xhtml

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.

     1 <html xmlns="http://www.w3.org/1999/xhtml">
     2 <head>
     3 <script>
     4 <![CDATA[
     5 function foopy()
     6 {
     7   var doc1 = document.getElementById("doc1").contentDocument;
     8   var doc2 = document.getElementById("doc2").contentDocument;
    10   var empty2 = doc2.getElementById("empty2");
    11   var hbox1 = doc1.getElementById("movemychild").firstChild;
    12   var empty1 = doc1.getElementById("empty1");
    14   aC(empty2, doc2.adoptNode(hbox1));
    15   aC(empty1, doc1.adoptNode(empty2));
    16 }
    18 function aC(q,r) { q.appendChild(r); }
    20 ]]>
    21 </script>
    22 </head>
    24 <body onload="foopy();">
    26 <iframe id="doc1" src="346512-1-frame1.xhtml" />
    27 <iframe id="doc2" src="346512-1-frame2.xhtml" />
    29 </body>
    30 </html>

mercurial