dom/xbl/crashtests/368276-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       xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     3       class="reftest-wait">
     5 <head>
     6 <script>
     8 function boom()
     9 {
    10   var quote = document.getElementById("quote");
    11   var para = document.getElementById("para");
    12   var dialog = document.getElementById("dialog");
    13   var e = document.getElementById("e");
    15   dialog.appendChild(quote);
    16   e.insertBefore(quote, para);
    18   document.documentElement.removeAttribute("class");
    19 }
    21 </script>
    22 </head>
    24 <body onload="setTimeout(boom, 30)">
    26 <p>He said <q id="quote">J<xul:hbox/></q></p>
    28 <xul:dialog id="dialog"/>
    30 <div id="e"><p id="para">Foopy</p></div>
    32 </body>
    33 </html>

mercurial