dom/xbl/crashtests/368276-1.xhtml

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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