summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/test_OuterDocAccessible.html
blob: b7a719aba52361c66ef056983e49e24faf9803d4 (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
76
77
78
79
80
81
82
83
84
85
86
87
<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" />

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <script type="application/javascript"
          src="common.js"></script>
  <script type="application/javascript"
          src="states.js"></script>
  <script type="application/javascript"
          src="role.js"></script>

  <script type="application/javascript">
    // needed error return value
    const ns_error_invalid_arg = Cr.NS_ERROR_INVALID_ARG;

    function doTest() {
      // Get accessible for body tag.
      var docAcc = getAccessible(document);

      if (docAcc) {
        var outerDocAcc = getAccessible(docAcc.parent);

        if (outerDocAcc) {
          testRole(outerDocAcc, ROLE_INTERNAL_FRAME);

          // check if it is focusable.
          testStates(outerDocAcc, STATE_FOCUSABLE, 0);

          // see bug 428954: No name wanted for internal frame
          is(outerDocAcc.name, null, "Wrong name for internal frame!");

          // see bug 440770, no actions wanted on outer doc
          is(outerDocAcc.actionCount, 0,
             "Wrong number of actions for internal frame!");

          try {
            outerDocAcc.getActionName(0);
            throw new Error("No exception thrown for actionName!");
          } catch (e) {
            is(e.result, ns_error_invalid_arg,
               "Wrong return value for actionName call!");
          }

          try {
            outerDocAcc.getActionDescription(0);
            throw new Error("No exception thrown for actionDescription!");
          } catch (e) {
            is(e.result, ns_error_invalid_arg,
               "Wrong return value for actionDescription call!");
          }

          try {
            outerDocAcc.doAction(0);
            throw new Error("No exception thrown for doAction!");
          } catch (e) {
            is(e.result, ns_error_invalid_arg,
               "Wrong return value for doAction call!");
          }
        }
      }

      SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </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>