1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/accessible/tests/mochitest/table/test_sels_tree.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,79 @@ 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 Table selection 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="../events.js" /> 1.22 + <script type="application/javascript" 1.23 + src="../role.js" /> 1.24 + <script type="application/javascript" 1.25 + src="../states.js" /> 1.26 + <script type="application/javascript" 1.27 + src="../table.js" /> 1.28 + 1.29 + <script type="application/javascript"> 1.30 + <![CDATA[ 1.31 + //////////////////////////////////////////////////////////////////////////// 1.32 + // Test 1.33 + 1.34 + // gA11yEventDumpID = "debug"; 1.35 + 1.36 + function doTest() 1.37 + { 1.38 + var cellsArray = 1.39 + [ 1.40 + [false, false], 1.41 + [false, false], 1.42 + [false, false] 1.43 + ]; 1.44 + 1.45 + testTableSelection("tree", cellsArray); 1.46 + testSelectTableRow("tree", 0, cellsArray); 1.47 + testUnselectTableRow("tree", 0, cellsArray); 1.48 + 1.49 + SimpleTest.finish(); 1.50 + } 1.51 + 1.52 + SimpleTest.waitForExplicitFinish(); 1.53 + addA11yXULTreeLoadEvent(doTest, "tree", new nsTableTreeView(3)); 1.54 + ]]> 1.55 + </script> 1.56 + 1.57 + <hbox flex="1" style="overflow: auto;"> 1.58 + <body xmlns="http://www.w3.org/1999/xhtml"> 1.59 + <a target="_blank" 1.60 + href="https://bugzilla.mozilla.org/show_bug.cgi?id=503727" 1.61 + title="Reorganize implementation of XUL tree accessibility"> 1.62 + Mozilla Bug 503727 1.63 + </a><br/> 1.64 + <p id="display"></p> 1.65 + <div id="content" style="display: none"> 1.66 + </div> 1.67 + <pre id="test"> 1.68 + </pre> 1.69 + </body> 1.70 + 1.71 + <vbox id="debug"/> 1.72 + <tree id="tree" flex="1"> 1.73 + <treecols> 1.74 + <treecol id="col" flex="1" primary="true" label="column"/> 1.75 + <treecol id="scol" flex="1" label="column 2"/> 1.76 + </treecols> 1.77 + <treechildren id="treechildren"/> 1.78 + </tree> 1.79 + </hbox> 1.80 + 1.81 +</window> 1.82 +