summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/336999-1.xhtml
blob: 193b6816130df8c884c19b57bdc36895e4d9a8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait">

<script>

function boom()
{
  document.getElementById("xxx").style.position = "fixed";
  document.documentElement.removeAttribute("class");
}

window.addEventListener("load", function(){setTimeout(boom, 30)}, 0);

</script>

  <hbox id="xxx" style="position: absolute; display: block;">
    <label value="X" />
    <menulist>
      <menupopup>
        <menuitem label="Y" />
      </menupopup>
    </menulist>
  </hbox>

</window>