Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 1 times in the preceding 30 days. quicksearch this test
- Manifest: dom/tests/mochitest/bugs/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=265203">Mozilla Bug 265203</a>
<p id="display">
<br>
<table cellpadding="2" cellspacing="2" border="1"
style="text-align: left; width: 100%;">
<tbody>
<tr>
<td style="vertical-align: top;"><a
</tr>
<tr>
<td style="vertical-align: top;"><a
</tr>
</tbody>
</table>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
var gTestStarted = false;
var expectedResult = [ null, 0, null ];
var nextTest;
var test = 0;
function testFocus() {
var selection = window.getSelection()
is(selection.focusNode, expectedResult[0],"test" + test + ": " + "caret node");
is(selection.focusOffset, expectedResult[1],"test" + test + ": " + "caret offset");
is(document.activeElement, expectedResult[2],"test" + test + ": " + "focused node");
++test;
if (nextTest)
nextTest();
}
function test0() {
$("a1").focus();
expectedResult = [ $("a1"), 0, $("a1") ]
nextTest = test1;
testFocus();
}
function test1() {
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
expectedResult = [ $("a1").firstChild, 7, $("a2") ]
nextTest = test2;
testFocus();
}
function test2() {
$("a3").focus();
expectedResult = [ $("a3"), 0, $("a3") ]
nextTest = test3;
testFocus();
}
function test3() {
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
synthesizeKey("KEY_ArrowRight");
expectedResult = [ $("a3").firstChild, 7, $("a3") ]
nextTest = SimpleTest.finish;
testFocus();
}
function startTest() {
if (gTestStarted)
return;
gTestStarted = true;
SpecialPowers.pushPrefEnv({"set": [["accessibility.browsewithcaret", true]]}, test0);
}
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(startTest);
</script>
</pre>
</body>
</html>