summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/tree/test_gencontent.html
blob: 3cd5e35e9a1cc137d6df8f5a5ba86158b9240de9 (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
<!DOCTYPE html>
<html>

<head>
  <title>Generated content tests</title>
  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />

  <style>
    .gentext:before {
      content: "START"
    }
    .gentext:after {
      content: "END"
    }
  </style>

  <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 type="application/javascript">
    function doTest() {
      // :before and :after pseudo styles
      var accTree = {
        role: ROLE_SECTION,
        children: [
          {
            role: ROLE_STATICTEXT,
            name: "START",
          },
          {
            role: ROLE_TEXT_LEAF,
            name: "MIDDLE",
          },
          {
            role: ROLE_STATICTEXT,
            name: "END",
          },
        ],
      };

      testAccessibleTree("gentext", accTree);

      SimpleTest.finish();
    }

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

  <a target="_blank"
     title="Clean up our tree walker"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=530081">
    Mozilla Bug 530081
  </a>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <div class="gentext" id="gentext">MIDDLE</div>
</body>
</html>