summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/treeupdate/test_bug852150.xhtml
blob: 51a3c3904760bcd4313df3c5a7a76eeba5e0b618 (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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Canvas subdom mutation</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="../role.js"></script>

  <script>
  <![CDATA[
    function doTest() {
      var the_displayNone = getNode("the_displaynone");
      var the_table = getNode("the_table");
      var the_row = getNode("the_row");
      ok(isAccessible(the_table), "table should be accessible");
      the_displayNone.appendChild(the_table);
      ok(!isAccessible(the_table), "table in display none tree shouldn't be accessible");

      setTimeout(function() {
        document.body.removeChild(the_row);
        // make sure no accessibles have stuck around.
        ok(!isAccessible(the_row), "row shouldn't be accessible");
        ok(!isAccessible(the_table), "table shouldn't be accessible");
        ok(!isAccessible(the_displayNone), "display none things shouldn't be accessible");
        SimpleTest.finish();
      }, 0);
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  ]]>
  </script>
</head>
<body>

  <a target="_blank"
     title="test accessible removal when reframe root isn't accessible"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=852150">
    Mozilla Bug 852150
  </a>

  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <div id="the_displaynone" style="display: none;"></div>
  <table id="the_table"></table>
  <tr id="the_row"></tr>
</body>
</html>