layout/xul/crashtests/399013.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">
     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