summaryrefslogtreecommitdiffstats
path: root/layout/xul/tree/crashtests/309732-2.xhtml
blob: 354c58dacfdcbe7283a8cc59fea6cceafd41e4e9 (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
25
26
27
28
29
30
31
<?xml version="1.0"?>

<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="setTimeout(boom, 30)">

  <script>
  function boom()
  {
    document.documentElement.appendChild(document.getElementById('TC'));   
    document.getElementById('TI').hidden = false;
    
    document.documentElement.removeAttribute("class");
  }
  </script>


  <tree flex="1">
    <treecols>
      <treecol label="Name" flex="1"/>
    </treecols>
    <treechildren id="TC">
      <treeitem>
        <treerow>
          <treecell label="First treecell"/>
        </treerow>
      </treeitem>
    </treechildren>
  </tree>
  <treeitem id="TI" hidden="true"/>
</window>