summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/events/test_mutation.xhtml
blob: e1aabe612d3a3faa79399db9933302c57a6ad61b (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
88
89
90
91
92
93
94
95
96
97
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
  <title>Accessible mutation events testing</title>

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

  <bindings xmlns="http://www.mozilla.org/xbl" >
    <binding id="button">
      <content>
        <button xmlns="http://www.w3.org/1999/xhtml">a button</button>
      </content>
    </binding>
  </bindings>

  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>

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

  <script type="application/javascript">

    /**
     * Insert a not accessible bound element containing an accessible element
     * in anonymous content.
     */
    function insertBinding(aContainerID)
    {
      this.containerNode = getNode(aContainerID);

      function getButtonFromBinding(aNode)
      {
        try { return document.getAnonymousNodes(aNode.firstChild)[0]; }
        catch (e) { return null; }
      }

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getButtonFromBinding, this.containerNode),
        new invokerChecker(EVENT_REORDER, this.containerNode)
      ];

      this.invoke = function insertBinding_invoke()
      {
        var span = document.createElement("span");
        span.setAttribute("style", "-moz-binding:url(#button)");
        this.containerNode.appendChild(span);
      }

      this.getID = function insertBinding_getID()
      {
        return "insert button binding";
      }
    }

    /**
     * Do tests.
     */
    var gQueue = null;
    //gA11yEventDumpID = "eventdump"; // debug stuff
    //gA11yEventDumpToConsole = true;

    function doTests()
    {
      gQueue = new eventQueue();

      gQueue.push(new insertBinding("testContainer"));

      gQueue.invoke(); // Will call SimpleTest.finish();
    }

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

<body>

  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=646369"
     title="UpdateTree should rely on accessible tree walker rather than DOM tree traversal">
    Mozilla Bug 646369</a>

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

  <div id="testContainer"></div>
</body>
</html>