2008-10-10 18:24:56 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
|
|
|
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
|
|
|
|
|
|
|
|
<window title="Mozilla Bug 444801"
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
2009-12-22 15:53:07 -08:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
2008-10-10 18:24:56 -07: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 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=444801">Mozilla Bug 444801</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>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script class="testbody" type="application/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
Components.utils.import("resource://gre/modules/SpatialNavigation.js");
|
|
|
|
|
|
|
|
var moveTable = [
|
|
|
|
["DOWN", "start"],
|
|
|
|
["DONE", "DONE"],
|
|
|
|
];
|
|
|
|
|
|
|
|
var prefs = [
|
|
|
|
["enabled", "bool", false],
|
|
|
|
["xulContentEnabled", "bool", true],
|
|
|
|
["keyCode.modifier", "char", "none"],
|
|
|
|
];
|
|
|
|
|
2009-12-22 15:53:07 -08:00
|
|
|
function runtest()
|
2008-10-10 18:24:56 -07:00
|
|
|
{
|
|
|
|
prepareTest(prefs);
|
|
|
|
|
|
|
|
// starting the test itself.
|
|
|
|
var x = document.getElementById("some-content");
|
|
|
|
SpatialNavigation.init(x);
|
|
|
|
|
|
|
|
// get to a known place.
|
|
|
|
document.getElementById("start").focus();
|
|
|
|
|
|
|
|
testMoves(moveTable);
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
SpatialNavigation.uninit();
|
|
|
|
}
|
|
|
|
|
2009-12-22 15:53:07 -08:00
|
|
|
SimpleTest.waitForFocus(runtest);
|
|
|
|
|
2008-10-10 18:24:56 -07:00
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
</window>
|