gecko/toolkit/spatial-navigation/tests/chrome/test_snav.xul

77 lines
2.6 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"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=436084
-->
<window title="Mozilla Bug 288254"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="onLoad();">
<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/tests/SimpleTest/EventUtils.js"></script>
<script type="application/javascript" src="SpatialNavUtils.js"></script>
<body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
<a id="start" href="https://bugzilla.mozilla.org/show_bug.cgi?id=436084">Mozilla Bug 436084</a>
<table
style="text-align: left; width: 100%; margin-left: auto; margin-right: auto;" border="1" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="vertical-align: top; text-align: center;"><a id="1" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="2" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="3" href="a">test</a></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;"><a id="4" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="5" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="6" href="a">test</a></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;"><a id="7" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="8" href="a">test</a></td>
<td style="vertical-align: top; text-align: center;"><a id="9" href="a">test</a></td>
</tr>
</tbody>
</table>
</body>
<script class="testbody" type="application/javascript">
<![CDATA[
Components.utils.import("resource://gre/modules/SpatialNavigation.js");
var moveTable = [
["DOWN", "1"],
["DOWN", "4"],
["DOWN", "7"],
["RIGHT", "8"],
["RIGHT", "9"],
["UP", "6"],
["UP", "3"],
["LEFT", "2"],
["LEFT", "1"],
["DONE", "DONE"]
];
function onLoad()
{
var x = document.getElementById("some-content");
var snav = new SpatialNavigation(x);
// get to a known place.
document.getElementById("start").focus();
testMoves(moveTable);
SimpleTest.waitForExplicitFinish();
}
]]></script>
</window>