summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/mac/doc_tree.xhtml
blob: d043fa89231bac86df99300de95534a201cc56df (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>

<window
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <tree id="tree" hidecolumnpicker="true">
    <treecols>
      <treecol primary="true" label="Groceries"/>
    </treecols>
    <treechildren id="internalTree">
      <treeitem id="fruits" container="true" open="true">
        <treerow>
          <treecell label="Fruits"/>
        </treerow>
        <treechildren>
          <treeitem id="apple">
            <treerow>
              <treecell label="Apple"/>
            </treerow>
          </treeitem>
          <treeitem id="orange">
            <treerow>
              <treecell label="Orange"/>
            </treerow>
          </treeitem>
        </treechildren>
      </treeitem>
      <treeitem id="veggies" container="true" open="true">
        <treerow>
          <treecell label="Veggies"/>
        </treerow>
        <treechildren>
          <treeitem id="greenVeggies" container="true" open="true">
            <treerow>
              <treecell label="Green Veggies"/>
            </treerow>
            <treechildren>
              <treeitem id="spinach">
                <treerow>
                  <treecell label="Spinach"/>
                </treerow>
              </treeitem>
              <treeitem id="peas">
                <treerow>
                  <treecell label="Peas"/>
                </treerow>
              </treeitem>
            </treechildren>
          </treeitem>
          <treeitem id="squash">
            <treerow>
              <treecell label="Squash"/>
            </treerow>
          </treeitem>
        </treechildren>
      </treeitem>
    </treechildren>
  </tree>
</window>