dom/xbl/crashtests/368276-1.xhtml

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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