2008-03-29 20:50:31 -07:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
2009-03-05 04:55:54 -08:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/common.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/role.js"></script>
|
|
|
|
|
2008-03-29 20:50:31 -07:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
function doTest()
|
|
|
|
{
|
|
|
|
// Test table with display:inline. We shouldn't create table accessible and
|
|
|
|
// table cell accessible in this case
|
2009-03-05 04:55:54 -08:00
|
|
|
var accNotCreated = (!isAccessible("table1"));
|
2008-03-29 20:50:31 -07:00
|
|
|
ok(accNotCreated, "wrongly created table accessible");
|
|
|
|
|
|
|
|
if (accNotCreated) {
|
2009-03-05 04:55:54 -08:00
|
|
|
var accDiv = getAccessible("div");
|
2008-03-29 20:50:31 -07:00
|
|
|
is(accDiv.firstChild.name, "cell", "wrongly created table cell accessible");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test table with display:inline and have an another outside table
|
2009-03-05 04:55:54 -08:00
|
|
|
accNotCreated = (!isAccessible("table2"));
|
2008-03-29 20:50:31 -07:00
|
|
|
ok(accNotCreated, "wrongly created table accessible");
|
|
|
|
|
2009-03-05 04:55:54 -08:00
|
|
|
accNotCreated = (!isAccessible("cell"));
|
2008-03-29 20:50:31 -07:00
|
|
|
ok(accNotCreated, "wrongly created table cell accessible");
|
|
|
|
|
|
|
|
// Test table with role=alert.
|
|
|
|
var tableInterfaceExposed = true;
|
2009-03-05 04:55:54 -08:00
|
|
|
var accTable3 = getAccessible("table3", [nsIAccessibleTable], null, DONOTFAIL_IF_NO_INTERFACE);
|
|
|
|
if (!accTable3)
|
|
|
|
tableInterfaceExposed = false;
|
2008-03-29 20:50:31 -07:00
|
|
|
ok(tableInterfaceExposed, "table interface is not exposed");
|
|
|
|
|
|
|
|
if (tableInterfaceExposed) {
|
2009-03-05 04:55:54 -08:00
|
|
|
testRole(accTable3, ROLE_ALERT);
|
2008-03-29 20:50:31 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
is(accTable3.getCellAt(0,0).firstChild.name, "cell0", "wrong cell");
|
|
|
|
is(accTable3.getCellAt(0,1).firstChild.name, "cell1", "wrong cell");
|
2008-03-29 20:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test table with role=log and aria property in tr. We create accessible for
|
|
|
|
// tr in this case.
|
|
|
|
tableInterfaceExposed = true;
|
2009-03-05 04:55:54 -08:00
|
|
|
var accTable4 = getAccessible("table4", [nsIAccessibleTable], null, DONOTFAIL_IF_NO_INTERFACE);
|
|
|
|
if (!accTable4)
|
2008-03-29 20:50:31 -07:00
|
|
|
tableInterfaceExposed = false;
|
|
|
|
ok(tableInterfaceExposed, "table interface is not exposed");
|
|
|
|
|
|
|
|
if (tableInterfaceExposed) {
|
2009-03-05 04:55:54 -08:00
|
|
|
accNotCreated = (!isAccessible("tr"));
|
2008-03-29 20:50:31 -07:00
|
|
|
ok(!accNotCreated, "missed tr accessible");
|
|
|
|
|
2009-06-11 11:18:24 -07:00
|
|
|
testRole(accTable4, ROLE_TABLE);
|
2008-03-29 20:50:31 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
is(accTable4.getCellAt(0,0).firstChild.name, "cell0", "wrong cell");
|
|
|
|
is(accTable4.getCellAt(0,1).firstChild.name, "cell1", "wrong cell");
|
|
|
|
is(accTable4.getCellAt(1,0).firstChild.name, "cell2", "wrong cell");
|
|
|
|
is(accTable4.getCellAt(1,1).firstChild.name, "cell3", "wrong cell");
|
2008-03-29 20:50:31 -07:00
|
|
|
}
|
|
|
|
|
2008-05-03 22:39:20 -07:00
|
|
|
// Test table with display:inline and an outside table. We shouldn't be fooled
|
|
|
|
// by the outside table and shouldn't create table accessible and table cell
|
|
|
|
// accessible in this case
|
2009-03-05 04:55:54 -08:00
|
|
|
accNotCreated = (!isAccessible("table5"));
|
2008-05-03 22:39:20 -07:00
|
|
|
ok(accNotCreated, "wrongly created table accessible");
|
2009-03-05 04:55:54 -08:00
|
|
|
accNotCreated = (!isAccessible("t5_cell"));
|
2008-05-03 22:39:20 -07:00
|
|
|
ok(accNotCreated, "wrongly created table cell accessible");
|
|
|
|
|
2008-03-29 20:50:31 -07:00
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2009-09-23 07:21:47 -07:00
|
|
|
addA11yLoadEvent(doTest);
|
2008-03-29 20:50:31 -07:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body >
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=419811">Mozilla Bug 419811</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<!-- Test Table -->
|
|
|
|
<br><br><b> Testing Table:</b><br><br>
|
|
|
|
<center>
|
|
|
|
<div id="div">
|
|
|
|
<table id="table1" border="1" style="display:inline">
|
|
|
|
<tr>
|
|
|
|
<td>cell</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table><tr><td>
|
|
|
|
<table id="table2" border="1" style="display:inline">
|
|
|
|
<tr>
|
|
|
|
<td id="cell">cell</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td></tr></table>
|
|
|
|
|
|
|
|
<table id="table3" border="1" role="alert">
|
|
|
|
<tr>
|
|
|
|
<td>cell0</td>
|
|
|
|
<td>cell1</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<table id="table4" border="1" role="log">
|
|
|
|
<tr aria-live="polite" id="tr">
|
|
|
|
<td>cell0</td>
|
|
|
|
<td>cell1</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>cell2</td>
|
|
|
|
<td>cell3</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2008-05-03 22:39:20 -07:00
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td style="display:block">
|
|
|
|
<table style="display:inline" id="table5">
|
|
|
|
<tr><td id="t5_cell">cell0</td></tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
<td>cell1</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2008-03-29 20:50:31 -07:00
|
|
|
</center>
|
|
|
|
</body>
|
|
|
|
</html>
|