2008-06-25 03:28:09 -07:00
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=441519
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>nsOuterDocAccessible chrome tests</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
|
2009-03-02 07:08:56 -08:00
|
|
|
<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"
|
2010-09-01 15:09:56 -07:00
|
|
|
src="common.js"></script>
|
2009-03-02 07:08:56 -08:00
|
|
|
<script type="application/javascript"
|
2010-09-01 15:09:56 -07:00
|
|
|
src="states.js"></script>
|
2009-03-02 07:08:56 -08:00
|
|
|
<script type="application/javascript"
|
2010-09-01 15:09:56 -07:00
|
|
|
src="role.js"></script>
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
// needed error return value
|
|
|
|
const ns_error_invalid_arg = Components.results.NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
function doTest()
|
|
|
|
{
|
|
|
|
// Get accessible for body tag.
|
2009-03-02 07:08:56 -08:00
|
|
|
var docAcc = getAccessible(document);
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
if (docAcc) {
|
2009-03-02 07:08:56 -08:00
|
|
|
var outerDocAcc = getAccessible(docAcc.parent);
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
if (outerDocAcc) {
|
2009-03-02 07:08:56 -08:00
|
|
|
testRole(outerDocAcc, ROLE_INTERNAL_FRAME);
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
// check if it is focusable, not desired.
|
2009-03-02 07:08:56 -08:00
|
|
|
testStates(outerDocAcc, 0, 0, STATE_FOCUSABLE);
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
// see bug 428954: No name wanted for internal frame
|
2009-03-02 07:08:56 -08:00
|
|
|
is(outerDocAcc.name, null, "Wrong name for internal frame!");
|
2008-06-25 03:28:09 -07:00
|
|
|
|
|
|
|
// see bug 440770, no actions wanted on outer doc
|
|
|
|
is(outerDocAcc.numActions, 0,
|
|
|
|
"Wrong number of actions for internal frame!");
|
|
|
|
var actionTempStr; // not really used, just needs to receive a value
|
|
|
|
try {
|
|
|
|
actionTempStr = outerDocAcc.getActionName(0);
|
|
|
|
do_throw("No exception thrown for actionName!");
|
|
|
|
} catch(e) {
|
|
|
|
ok(e.result, ns_error_invalid_arg,
|
|
|
|
"Wrong return value for actionName call!");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
actionTempStr = outerDocAcc.getActionDescription(0);
|
|
|
|
do_throw("No exception thrown for actionDescription!");
|
|
|
|
} catch(e) {
|
|
|
|
ok(e.result, ns_error_invalid_arg,
|
|
|
|
"Wrong return value for actionDescription call!");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
outerDocAcc.doAction(0);
|
|
|
|
do_throw("No exception thrown for doAction!");
|
|
|
|
} catch(e) {
|
|
|
|
ok(e.result, ns_error_invalid_arg,
|
|
|
|
"Wrong return value for doAction call!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2009-09-23 07:21:47 -07:00
|
|
|
addA11yLoadEvent(doTest);
|
2008-06-25 03:28:09 -07:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=441519"
|
|
|
|
title="nsOuterDocAccessible chrome tests">
|
|
|
|
Mozilla Bug 441519
|
|
|
|
</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|