summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/elm/test_nsApplicationAcc.html
blob: e23eb37bc4081047e8afa7655df14aab650baae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<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/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">
    function doTest()
    {
      var accessible = getApplicationAccessible();
      if (!accessible) {
        SimpleTest.finish();
        return;
      }

      var bundleServ =
        Components.classes["@mozilla.org/intl/stringbundle;1"].
        getService(Components.interfaces.nsIStringBundleService);
      var brandBundle =
        bundleServ.createBundle("chrome://branding/locale/brand.properties");

      var appInfo = Components.classes["@mozilla.org/xre/app-info;1"].
        getService(Components.interfaces.nsIXULAppInfo);

      // nsIAccessible::name
      var applicationName = "";
      if (LINUX) {
        applicationName = appInfo.name;
      } else {
        try {
          applicationName = brandBundle.GetStringFromName("brandShortName");
        } catch(e) {
        }

        if (applicationName == "")
          applicationName = "Gecko based application";
      }
      is (accessible.name, applicationName, "wrong application accessible name");

      // nsIAccessibleApplication
      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");

      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>