mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
88 lines
2.3 KiB
XML
88 lines
2.3 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
|
|
type="text/css"?>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="Table indices of accessible table for XUL listbox">
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/common.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/table.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
function doTest()
|
|
{
|
|
var idxes = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8]
|
|
];
|
|
testTableIndexes("listbox", idxes);
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
]]>
|
|
</script>
|
|
|
|
<hbox style="overflow: auto;">
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=512424"
|
|
title="implement IAccessibleTable2">
|
|
Mozilla Bug 512424
|
|
</a>
|
|
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
</pre>
|
|
</body>
|
|
|
|
<vbox flex="1">
|
|
|
|
<label control="listbox" value="multicolumn listbox with header"/>
|
|
<listbox id="listbox">
|
|
<listhead>
|
|
<listheader label="header1"/>
|
|
<listheader label="header2"/>
|
|
<listheader label="header3"/>
|
|
</listhead>
|
|
<listcols>
|
|
<listcol flex="1"/>
|
|
<listcol flex="1"/>
|
|
<listcol flex="1"/>
|
|
</listcols>
|
|
<listitem>
|
|
<listcell label="cell0"/>
|
|
<listcell label="cell1"/>
|
|
<listcell label="cell2"/>
|
|
</listitem>
|
|
<listitem>
|
|
<listcell label="cell3"/>
|
|
<listcell label="cell4"/>
|
|
<listcell label="cell5"/>
|
|
</listitem>
|
|
<listitem>
|
|
<listcell label="cell6"/>
|
|
<listcell label="cell7"/>
|
|
<listcell label="cell8"/>
|
|
</listitem>
|
|
</listbox>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
</window>
|
|
|