summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/elm/test_plugin.html
blob: 3350e6ccc24041cc069e015e989e7ae5f010939b (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
<!DOCTYPE html>
<html>
<head>
  <title>Plugin tests</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"
          src="../states.js"></script>

  <script type="application/javascript">

    function doTest()
    {
      if (!WIN) {
        ok(true,
           "It's Windows specific test. Feel free to extend the test.");

        SimpleTest.finish();
        return;
      }

      testStates("plugin-windowless", STATE_UNAVAILABLE);
      testAccessibleTree("plugin-windowless", { EMBEDDED_OBJECT: [ ] });

      testStates("plugin-windowless-fallback", STATE_UNAVAILABLE);
      testAccessibleTree("plugin-windowless-fallback", { EMBEDDED_OBJECT: [ ] });

      testStates("plugin-windowed", 0, 0, STATE_UNAVAILABLE);
      testAccessibleTree("plugin-windowed", { EMBEDDED_OBJECT: [ { NOTHING: [] } ] });

      testStates("plugin-windowed-fallback", 0, 0, STATE_UNAVAILABLE);
      testAccessibleTree("plugin-windowed-fallback",
                         { EMBEDDED_OBJECT: [ { NOTHING: [] } ] });

      // make sure we handle content changes under the plugin.
      getNode("fallback1").setAttribute("href", "5");
      getNode("fallback2").setAttribute("href", "5");
      SimpleTest.executeSoon(function () { SimpleTest.finish(); });
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
    setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
  </script>
</head>
<body>

  <a target="_blank"
     title="Embed and object HTML tags should be given an accessible role of embedded object"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=485270">Bug 485270</a>
  <a target="_blank"
     title="Embedded object accessibles for inaccessible/windowless plugins should not expose a NULL child"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=816856">Bug 816856</a>
  <a target="_blank"
     title="Updating accessible tree for plugin with fallback shouldn't crash"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=881636">Bug 881636</a>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <embed id="plugin-windowless" type="application/x-test"
         width="300" height="300"></embed>
  <embed id="plugin-windowed" type="application/x-test" wmode="window"
         width="300" height="300"></embed>
  <embed id="plugin-windowless-fallback" type="application/x-test"
    width="300" height="300"><a id="fallback1">foo</a></embed>
  <embed id="plugin-windowed-fallback" type="application/x-test" wmode="window"
    width="300" height="300"><a id="fallback2">foo</a></embed>
</body>
</html>