accessible/tests/mochitest/attributes/test_obj_group_tree.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/accessible/tests/mochitest/attributes/test_obj_group_tree.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,85 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
     1.6 +<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
     1.7 +                 type="text/css"?>
     1.8 +
     1.9 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    1.10 +        title="Accessible XUL tree attributes tests">
    1.11 +
    1.12 +  <script type="application/javascript"
    1.13 +          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
    1.14 +
    1.15 +  <script type="application/javascript"
    1.16 +          src="../treeview.js" />
    1.17 +
    1.18 +  <script type="application/javascript"
    1.19 +          src="../common.js" />
    1.20 +  <script type="application/javascript"
    1.21 +          src="../attributes.js" />
    1.22 +  <script type="application/javascript"
    1.23 +          src="../events.js" />
    1.24 +
    1.25 +  <script type="application/javascript">
    1.26 +  <![CDATA[
    1.27 +    ////////////////////////////////////////////////////////////////////////////
    1.28 +    // Test
    1.29 +
    1.30 +    function doTest()
    1.31 +    {
    1.32 +      var treeNode = getNode("tree");
    1.33 +
    1.34 +      var tree = getAccessible(treeNode);
    1.35 +      var treeitem1 = tree.firstChild.nextSibling;
    1.36 +      testGroupAttrs(treeitem1, 1, 4, 1);
    1.37 +
    1.38 +      var treeitem2 = treeitem1.nextSibling;
    1.39 +      testGroupAttrs(treeitem2, 2, 4, 1);
    1.40 +
    1.41 +      var treeitem3 = treeitem2.nextSibling;
    1.42 +      testGroupAttrs(treeitem3, 1, 2, 2);
    1.43 +
    1.44 +      var treeitem4 = treeitem3.nextSibling;
    1.45 +      testGroupAttrs(treeitem4, 2, 2, 2);
    1.46 +
    1.47 +      var treeitem5 = treeitem4.nextSibling;
    1.48 +      testGroupAttrs(treeitem5, 3, 4, 1);
    1.49 +
    1.50 +      var treeitem6 = treeitem5.nextSibling;
    1.51 +      testGroupAttrs(treeitem6, 4, 4, 1);
    1.52 +
    1.53 +      SimpleTest.finish();
    1.54 +    }
    1.55 +
    1.56 +    SimpleTest.waitForExplicitFinish();
    1.57 +    addA11yXULTreeLoadEvent(doTest, "tree", new nsTreeTreeView());
    1.58 +  ]]>
    1.59 +  </script>
    1.60 +
    1.61 +  <hbox flex="1" style="overflow: auto;">
    1.62 +    <body xmlns="http://www.w3.org/1999/xhtml">
    1.63 +      <a target="_blank"
    1.64 +         href="https://bugzilla.mozilla.org/show_bug.cgi?id=503727"
    1.65 +         title="Reorganize implementation of XUL tree accessibility">
    1.66 +        Mozilla Bug 503727
    1.67 +      </a><br/>
    1.68 +      <p id="display"></p>
    1.69 +      <div id="content" style="display: none">
    1.70 +      </div>
    1.71 +      <pre id="test">
    1.72 +      </pre>
    1.73 +    </body>
    1.74 +
    1.75 +    <vbox flex="1">
    1.76 +      <tree id="tree" flex="1">
    1.77 +        <treecols>
    1.78 +          <treecol id="col" flex="1" primary="true" label="column"/>
    1.79 +        </treecols>
    1.80 +        <treechildren/>
    1.81 +      </tree>
    1.82 +
    1.83 +      <vbox id="debug"/>
    1.84 +    </vbox>
    1.85 +  </hbox>
    1.86 +
    1.87 +</window>
    1.88 +

mercurial