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