content/base/crashtests/354645-1.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();" class="reftest-wait">
     3 <script type="text/javascript">
     5 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
     7 function boom()
     8 {
     9   var A = document.getElementById("A");
    10   var B = document.createElementNS(XUL_NS, "tabs");
    11   var C = document.createElementNS(XUL_NS, "hbox");
    12   B.appendChild(C);
    13   A.appendChild(B);
    14 }
    16 function remove(n)
    17 {
    18   n.parentNode.removeChild(n);
    19 }
    21 </script>
    23 <hbox id="A" onselect="remove(event.originalTarget); document.documentElement.removeAttribute('class');"></hbox>
    25 </window>

mercurial