summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/text/test_dynamic.html
blob: 63889fc664b188931ca18cee8371464b67098fe7 (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
<!DOCTYPE html>
<html>
<head>
  <title>nsIAccessibleText getText related function tests for tree mutations</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="../text.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">
    function insertBefore(aId, aEl, aTextBefore, aTextAfter, aStartIdx, aEndIdx) {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, aId),
      ];

      this.invoke = function insertBefore_invoke() {
        testText(aId, 0, -1, aTextBefore);
        getNode(aId).insertBefore(aEl, getNode(aId).firstChild);
      };

      this.finalCheck = function insertBefore_finalCheck() {
        testText(aId, aStartIdx, aEndIdx, aTextAfter);
      };

      this.getID = function insertTextBefore_getID() {
        return "insert " + prettyName(aEl) + " before";
      };
    }

    function insertTextBefore(aId, aTextBefore, aText) {
      var el = document.createTextNode(aText);
      this.__proto__ = new insertBefore(aId, el, aTextBefore,
                                        aText + aTextBefore, 0, -1);
    }

    function insertImgBefore(aId, aTextBefore) {
      var el = document.createElement("img");
      el.setAttribute("src", "../moz.png");
      el.setAttribute("alt", "mozilla");

      this.__proto__ = new insertBefore(aId, el, aTextBefore,
                                        kEmbedChar + aTextBefore, 0, -1);
    }

    function insertTextBefore2(aId) {
      var el = document.createTextNode("hehe");
      this.__proto__ = new insertBefore(aId, el, "ho", "ho", 4, -1);
    }

    var gQueue = null;
    function doTest() {
      gQueue = new eventQueue();
      gQueue.push(new insertTextBefore("c1", "ho", "ha"));
      gQueue.push(new insertImgBefore("c1", "haho"));
      gQueue.push(new insertImgBefore("c2", kEmbedChar));
      gQueue.push(new insertTextBefore2("c3"));
      gQueue.invoke(); // will call SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </script>
</head>
<body>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <div id="c1">ho</div>
  <div id="c2"><img src="../moz.png" alt="mozilla"></div>
  <div id="c3">ho</div>
</body>
</html>