layout/base/crashtests/400185-1.xul

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 <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
     2 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(doe, 30);" class="reftest-wait">
     3 <popupgroup id="a"/>
     4 <listcols>
     5 <nativescrollbar id="c">
     6 <treecols/>
     7 </nativescrollbar>
     8 </listcols>
    10 <script>
    11 function doe() {
    12   document.documentElement.id = "true";
    13   document.documentElement.removeChild(document.getElementById('a')); 
    14   var ne = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'popupgroup'); 
    15   document.documentElement.appendChild(ne); 
    16   document.getElementById('c').appendChild(document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'treecols'));
    17   document.documentElement.removeChild(ne);
    18   document.documentElement.removeAttribute("class");
    19 }
    20 </script>
    21 </window>

mercurial