2009-12-10 11:45:11 -08:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>application accessible name</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"
|
2010-09-01 15:09:56 -07:00
|
|
|
src="common.js"></script>
|
2009-12-10 11:45:11 -08:00
|
|
|
<script type="application/javascript"
|
2010-09-01 15:09:56 -07:00
|
|
|
src="role.js"></script>
|
2009-12-10 11:45:11 -08:00
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
function doTest()
|
|
|
|
{
|
|
|
|
var accessible = getApplicationAccessible();
|
|
|
|
if (!accessible) {
|
|
|
|
SimpleTest.finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-18 11:49:39 -07:00
|
|
|
// nsIAccessible::name
|
2009-12-10 11:45:11 -08:00
|
|
|
var bundleServ = Components.classes["@mozilla.org/intl/stringbundle;1"]
|
|
|
|
.getService(Components.interfaces.nsIStringBundleService);
|
|
|
|
var bundle = bundleServ.createBundle("chrome://branding/locale/brand.properties");
|
|
|
|
|
|
|
|
var applicationName = "";
|
|
|
|
|
|
|
|
try {
|
|
|
|
applicationName = bundle.GetStringFromName("brandShortName");
|
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (applicationName == "")
|
|
|
|
applicationName = "Gecko based application";
|
|
|
|
|
|
|
|
is (accessible.name, applicationName, "wrong application accessible name");
|
|
|
|
|
2010-03-18 11:49:39 -07:00
|
|
|
// nsIAccessibleApplication
|
|
|
|
var appInfo = Components.classes["@mozilla.org/xre/app-info;1"].
|
|
|
|
getService(Components.interfaces.nsIXULAppInfo);
|
|
|
|
|
|
|
|
is(accessible.appName, appInfo.name, "Wrong application name");
|
|
|
|
is(accessible.appVersion, appInfo.version, "Wrong application version");
|
|
|
|
is(accessible.platformName, "Gecko", "Wrong platform name");
|
|
|
|
is(accessible.platformVersion, appInfo.platformVersion,
|
|
|
|
"Wrong platform version");
|
|
|
|
|
2009-12-10 11:45:11 -08:00
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addA11yLoadEvent(doTest);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=456121"
|
|
|
|
title="nsApplicationAccessible::GetName does not return a default value when brand.properties does not exist">
|
|
|
|
Mozilla Bug 454211
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|