Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<html>
<head>
<title>Accessible focus testing on HTML controls</title>
<link rel="stylesheet" type="text/css"
<script type="application/javascript"
src="../common.js"></script>
<script type="application/javascript"
src="../events.js"></script>
<script type="application/javascript"
src="../role.js"></script>
<script type="application/javascript"
src="../states.js"></script>
<script type="application/javascript">
// gA11yEventDumpToConsole = true;
var gQueue = null;
function doTests() {
gQueue = new eventQueue(EVENT_FOCUS);
gQueue.push(new synthFocus("textbox"));
gQueue.push(new synthFocus("textarea"));
gQueue.push(new synthFocus("button1"));
gQueue.push(new synthFocus("button2"));
gQueue.push(new synthFocus("checkbox"));
gQueue.push(new synthFocus("radio1"));
gQueue.push(new synthDownKey("radio1", new focusChecker("radio2")));
// no focus events for checkbox or radio inputs when they are checked
// programmatically
gQueue.push(new changeCurrentItem("checkbox"));
gQueue.push(new changeCurrentItem("radio1"));
let fileBrowseButton = getAccessible("file");
gQueue.push(new synthFocus("file", new focusChecker(fileBrowseButton)));
gQueue.invoke(); // Will call SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addA11yLoadEvent(doTests);
</script>
</head>
<body>
<a target="_blank"
title="Rework accessible focus handling">
Mozilla Bug 673958
</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
</pre>
<input id="textbox">
<textarea id="textarea"></textarea>
<input id="button1" type="button" value="button">
<button id="button2">button</button>
<input id="checkbox" type="checkbox">
<input id="radio1" type="radio" name="radiogroup">
<input id="radio2" type="radio" name="radiogroup">
<input id="file" type="file">
<div id="eventdump"></div>
</body>
</html>