summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/events/test_fromUserInput.html
blob: b3617358cfddfc5190a1b0352e732a922537178b (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html>

<head>
  <title>Testing of isFromUserInput in text events</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 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">

    /**
     * Remove text data from HTML input.
     */
    function removeTextFromInput(aID, aStart, aEnd, aText, aFromUser) {
      this.DOMNode = getNode(aID);

      this.eventSeq = [
        new textChangeChecker(aID, aStart, aEnd, aText, false, aFromUser),
      ];

      this.invoke = function removeTextFromInput_invoke() {
        this.DOMNode.focus();
        this.DOMNode.setSelectionRange(aStart, aEnd);

        synthesizeKey("KEY_Delete");
      };

      this.getID = function removeTextFromInput_getID() {
        return "Remove text from " + aStart + " to " + aEnd + " for " +
          prettyName(aID);
      };
    }

    /**
     * Remove text data from text node.
     */
    function removeTextFromContentEditable(aID, aStart, aEnd, aText, aFromUser) {
      this.DOMNode = getNode(aID);

      this.eventSeq = [
        new textChangeChecker(aID, aStart, aEnd, aText, false, aFromUser),
      ];

      this.invoke = function removeTextFromContentEditable_invoke() {
        this.DOMNode.focus();
        this.textNode = getNode(aID).firstChild;
        var selection = window.getSelection();
        var range = document.createRange();
        range.setStart(this.textNode, aStart);
        range.setEnd(this.textNode, aEnd);
        selection.addRange(range);

        synthesizeKey("KEY_Delete");
      };

      this.getID = function removeTextFromContentEditable_getID() {
        return "Remove text from " + aStart + " to " + aEnd + " for " +
          prettyName(aID);
      };
    }

    // //////////////////////////////////////////////////////////////////////////
    // Do tests
    // gA11yEventDumpID = "eventdump"; // debug stuff

    var gQueue = null;

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

      // Focused editable text node
      gQueue.push(new removeTextFromContentEditable("div", 0, 3, "hel", true));

      // Focused editable HTML input
      gQueue.push(new removeTextFromInput("input", 1, 2, "n", true));

      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=686909"
     title="isFromUserInput flag on accessible text change events not correct">
    Mozilla Bug 686909
  </a>

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

  <div id="div" contentEditable="true">hello</div>
  <input id="input" value="input">

</body>

</html>