mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
72 lines
1.9 KiB
HTML
72 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=474281
|
|
-->
|
|
<head>
|
|
<title>Name calculation for table and grid cells</title>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<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/nsIAccessible_name.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/role.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function doTests()
|
|
{
|
|
// Test table cell name and role
|
|
testRole("tc", ROLE_CELL);
|
|
|
|
// Test grid cell.
|
|
testRole("gc", ROLE_GRID_CELL);
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addLoadEvent(doTests);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=474281"
|
|
title="accessible name of html table cells is incorrectly including descendants">
|
|
Mozilla bug 474281</a>
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
<table>
|
|
<tr>
|
|
<td id="tc">
|
|
<p>This is a paragraph</p>
|
|
<a href="#">This is a link</a>
|
|
<ul>
|
|
<li>This is a list</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td id="gc" role="gridcell">
|
|
<p>This is a paragraph</p>
|
|
<a href="#">This is a link</a>
|
|
<ul>
|
|
<li>This is a list</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|