2009-07-17 20:09:16 -07:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Accessible events testing for document</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/common.js"></script>
|
2009-07-27 19:28:06 -07:00
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/role.js"></script>
|
2009-07-17 20:09:16 -07:00
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/events.js"></script>
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Invokers
|
|
|
|
|
|
|
|
function changeIframeSrc(aIdentifier, aURL)
|
|
|
|
{
|
|
|
|
this.DOMNode = getNode(aIdentifier);
|
|
|
|
|
2009-07-27 19:28:06 -07:00
|
|
|
this.eventSeq = [
|
|
|
|
new invokerChecker(EVENT_REORDER, getAccessible(this.DOMNode))
|
|
|
|
];
|
|
|
|
|
2009-07-17 20:09:16 -07:00
|
|
|
this.invoke = function changeIframeSrc_invoke()
|
|
|
|
{
|
|
|
|
this.DOMNode.src = aURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getID = function changeIframeSrc_getID()
|
|
|
|
{
|
|
|
|
return "change iframe src on " + aURL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-27 19:28:06 -07:00
|
|
|
function openDialogWnd(aURL)
|
|
|
|
{
|
|
|
|
// Get application root accessible.
|
|
|
|
var docAcc = getAccessible(document);
|
|
|
|
while (docAcc) {
|
|
|
|
this.mRootAcc = docAcc;
|
2009-12-10 11:12:19 -08:00
|
|
|
try {
|
|
|
|
docAcc = docAcc.parent;
|
|
|
|
} catch (e) {
|
|
|
|
ok(false, "Can't get parent for " + prettyName(docAcc));
|
|
|
|
throw e;
|
|
|
|
}
|
2009-07-27 19:28:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this.eventSeq = [
|
|
|
|
new invokerChecker(EVENT_REORDER, this.mRootAcc)
|
|
|
|
];
|
|
|
|
|
|
|
|
this.invoke = function openDialogWnd_invoke()
|
|
|
|
{
|
|
|
|
this.mDialog = window.openDialog(aURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.check = function openDialogWnd_check()
|
|
|
|
{
|
|
|
|
var accTree = {
|
|
|
|
role: ROLE_APP_ROOT,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
role: ROLE_CHROME_WINDOW
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_CHROME_WINDOW
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
testAccessibleTree(this.mRootAcc, accTree);
|
|
|
|
|
|
|
|
this.mDialog.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getID = function openDialogWnd_getID()
|
|
|
|
{
|
|
|
|
return "open dialog '" + aURL + "'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 20:09:16 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Do tests
|
|
|
|
|
|
|
|
var gQueue = null;
|
|
|
|
|
|
|
|
// var gA11yEventDumpID = "eventdump"; // debug stuff
|
|
|
|
|
|
|
|
function doTests()
|
|
|
|
{
|
2009-07-27 19:28:06 -07:00
|
|
|
gQueue = new eventQueue();
|
2009-07-17 20:09:16 -07:00
|
|
|
|
|
|
|
gQueue.push(new changeIframeSrc("iframe", "about:"));
|
|
|
|
gQueue.push(new changeIframeSrc("iframe", "about:buildconfig"));
|
2009-07-27 19:28:06 -07:00
|
|
|
gQueue.push(new openDialogWnd("about:"));
|
2009-07-17 20:09:16 -07:00
|
|
|
|
|
|
|
gQueue.invoke(); // Will call SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addA11yLoadEvent(doTests);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=420845"
|
|
|
|
title="Fire event_reorder on any embedded frames/iframes whos document has just loaded">
|
|
|
|
Mozilla Bug 420845
|
|
|
|
</a>
|
2009-07-27 19:28:06 -07:00
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=506206"
|
|
|
|
title="Fire event_reorder application root accessible">
|
|
|
|
Mozilla Bug 506206
|
|
|
|
</a>
|
2009-07-17 20:09:16 -07:00
|
|
|
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<div id="testContainer">
|
|
|
|
<iframe id="iframe"></iframe>
|
|
|
|
</div>
|
|
|
|
<div id="eventdump"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|