summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/textselection/test_userinput.html
blob: 1f7127866eef12135a65b7e127990b795f58f4b2 (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
<html>

<head>
  <title>Text selection by user input</title>

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

  <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="../role.js"></script>
  <script type="application/javascript"
          src="../states.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">
    /**
     * Invokers
     */
    function synthTabAndCheckPrevTabbed(aID, aPrevID)
    {
      this.__proto__ = new synthTab(aID, new focusChecker(aID));

      this.finalCheck = function changeSelection_finalCheck()
      {
        var prevTabbed = getAccessible(aPrevID, [ nsIAccessibleText ]);
        is(prevTabbed.selectionCount, 0,
           "Wrong selection count for " + aPrevID);

        var exceptionCaught = false;
        try {
          var startOffsetObj = {}, endOffsetObj = {};
          prevTabbed.getSelectionBounds(0, startOffsetObj, endOffsetObj);
        } catch (e) {
          exceptionCaught = true;
        }

        ok(exceptionCaught, "No selection was expected for " + aPrevID);
      }

      this.getID = function changeSelection_getID()
      {
        return "Hidden selection check for " + aPrevID;
      }
    }

    /**
     * Do tests
     */

    //gA11yEventDumpToConsole = true; // debug stuff

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

      // Tab to 't2' and then tab out it: it must has no selection.
      gQueue.push(new synthFocus("t1"));
      gQueue.push(new synthTab("t2", new focusChecker("t2")));
      gQueue.push(new synthTabAndCheckPrevTabbed("t3", "t2"));

      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=440590"
     title="Text selection information is not updated when HTML and XUL entries lose focus">
    Bug 440590
  </a>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <input type="text" id="t1" maxlength="3" size="3" value="1">
  <input type="text" id="t2" maxlength="3" size="3" value="1">
  <input type="text" id="t3" maxlength="3" size="3" value="1">

</body>
</html>