layout/xul/crashtests/399013.xul

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
     2 <menulist id="b" style="display: -moz-groupbox;">
     3 <panel id="c" style=" position: absolute;">
     4 <popup onunderflow="document.getElementById('c').removeAttribute('style')"/>
     5 </panel>
     6 <menupopup id="a" style="display: -moz-stack;">
     7 <menulist/>
     8 </menupopup>
     9 <panel style="display: -moz-deck;" onoverflow="document.getElementById('b').removeAttribute('style')">
    10 <popup style="display: -moz-deck;"/>
    11 </panel>
    12 </menulist>
    14 <script id="script" xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
    15 function doe() {
    16 document.getElementById('c').removeAttribute('style');
    17 document.documentElement.boxObject.height;
    18 document.getElementById('b').removeAttribute('style');
    19 document.getElementById('a').setAttribute('selected', 'true');
    20 document.getElementById('a').setAttribute('style', 'position: fixed;');
    21 document.documentElement.boxObject.height;
    22 document.getElementById('a').removeAttribute('style');
    23 }
    25 function doe2() {
    26 window.location.reload();
    27 }
    28 setTimeout(doe2, 200);
    29 setTimeout(doe,100);
    30 ]]></script>
    31 </window>

mercurial