81 lines
2.2 KiB
HTML
81 lines
2.2 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>nsIAccessible::focusedChild testing</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="../common.js"></script>
|
|
<script type="application/javascript"
|
|
src="../role.js"></script>
|
|
<script type="application/javascript"
|
|
src="../states.js"></script>
|
|
<script type="application/javascript"
|
|
src="../events.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function openWnd() {
|
|
this.eventSeq = [ new invokerChecker(EVENT_FOCUS,
|
|
getDialogAccessible,
|
|
this) ];
|
|
|
|
this.invoke = function openWnd_invoke() {
|
|
this.dialog = window.browsingContext.topChromeWindow
|
|
.openDialog("about:mozilla",
|
|
"AboutMozilla",
|
|
"chrome,width=600,height=600");
|
|
};
|
|
|
|
this.finalCheck = function openWnd_finalCheck() {
|
|
var app = getApplicationAccessible();
|
|
is(app.focusedChild, getDialogAccessible(this),
|
|
"Wrong focused child");
|
|
|
|
this.dialog.close();
|
|
};
|
|
|
|
this.getID = function openWnd_getID() {
|
|
return "focusedChild for application accessible";
|
|
};
|
|
|
|
function getDialogAccessible(aInvoker) {
|
|
return getAccessible(aInvoker.dialog.document);
|
|
}
|
|
}
|
|
|
|
gA11yEventDumpToConsole = true;
|
|
var gQueue = null;
|
|
|
|
function doTest() {
|
|
enableLogging("focus,doclifecycle");
|
|
gQueue = new eventQueue();
|
|
|
|
gQueue.push(new openWnd());
|
|
|
|
gQueue.onFinish = function() { disableLogging(); };
|
|
gQueue.invoke(); // Will call SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=677467"
|
|
title="focusedChild crashes on application accessible">
|
|
GNU Bug 677467
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
</body>
|
|
</html>
|