summaryrefslogtreecommitdiffstats
path: root/layout/xul/crashtests/365151.xhtml
blob: 001707f4eb6c393c8ed318f1e416d728aa2f5d7d (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
32
33
34
35
36
37
38
39
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>

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


<script>
function boom()
{
 try {
  var tree = document.getElementById("tree");
  var col = tree.columns.getFirstColumn();
  var treecols = document.getElementById("treecols");
  treecols.parentNode.removeChild(treecols);
  var x = col.x;
 } finally {
  document.documentElement.removeAttribute("class");
 }
}
</script>


<tree rows="6" id="tree">

  <treecols id="treecols">
      <treecol id="firstname" label="First Name"/>
  </treecols>

  <treechildren id="treechildren">
    <treeitem>
      <treerow>
        <treecell label="Bob"/>
      </treerow>
    </treeitem>
  </treechildren>

</tree>

</window>