gecko/toolkit/spatial-navigation/tests/chrome/test_snav_disabledElement.xul
Timothy Nikkel bd38594159 Bug 396367. Fix up some tests to be more robust. r=enndeakin
--HG--
extra : rebase_source : c3aafd472aebcacfce7f778d61f5a088dd0493c4
2009-12-22 17:53:07 -06:00

71 lines
1.8 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">
<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="text/javascript" src="SpatialNavUtils.js"></script>
<body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
<p>
<a id="start" href="https://bugzilla.mozilla.org/show_bug.cgi?id=436084">Mozilla Bug 436084</a>
</p>
<p>
<input id="hi_mom" value="Some text" disabled="true" type="text"> </input>
</p>
<p>
<a id="end" href="https://bugzilla.mozilla.org/show_bug.cgi?id=436084">Mozilla Bug 436084</a>
</p>
</body>
<script class="testbody" type="application/javascript">
<![CDATA[
Components.utils.import("resource://gre/modules/SpatialNavigation.js");
var moveTable = [
["DOWN", "end"],
["DONE", "DONE"],
];
var prefs = [
["enabled", "bool", true],
["xulContentEnabled", "bool", true],
["keyCode.modifier", "char", "none"],
];
function runtest()
{
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();
}
SimpleTest.waitForFocus(runtest);
]]></script>
</window>