summaryrefslogtreecommitdiffstats
path: root/dom/inputmethod/mochitest/test_two_selects.html
blob: 9869b8c14cb9b2e22e9bd4519b771bc58f8e0306 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1079728
-->
<head>
  <title>Test switching between two inputs</title>
  <script type="application/javascript;version=1.7" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript;version=1.7" src="inputmethod_common.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1079728">Mozilla Bug 1079728</a>
<p id="display"></p>
<pre id="test">
<script class="testbody" type="application/javascript;version=1.7">

inputmethod_setup(function() {
  runTest();
});

let appFrameScript = function appFrameScript() {
  let select1 = content.document.body.firstElementChild;
  let select2 = content.document.body.children[1];

  let i = 1;

  select1.focus();

  addMessageListener('test:next', function() {
    i++;
    switch (i) {
      case 2:
        select2.focus();
        i++; // keep the same count with the parent frame.

        break;

      case 4:
        select2.blur();

        break;

      case 5:
        select2.focus();

        break;

      case 6:
        select1.focus();
        i++; // keep the same count with the parent frame.

        break;

      case 8:
        content.document.body.removeChild(select1);

        break;

      case 9:
        select2.focus();

        break;

      case 10:
        content.document.body.removeChild(select2);

        break;
    }
  });
};

function runTest() {
  let im = navigator.mozInputMethod;

  let i = 0;
  im.oninputcontextchange = function(evt) {
    var inputcontext = navigator.mozInputMethod.inputcontext;

    i++;
    switch (i) {
      // focus on the first input receives the first input context.
      case 1:
        ok(!!inputcontext, '1) Receving the first input context');
        is(inputcontext.textAfterCursor, 'First');

        mm.sendAsyncMessage('test:next');
        break;

      // focus on the second input should implicitly blur the first input
      case 2:
        is(inputcontext, null, '2) Receving null inputcontext');

        break;

      // ... and results the second input context.
      case 3:
        ok(!!inputcontext, '3) Receving the second input context');
        is(inputcontext.textAfterCursor, 'Second');

        mm.sendAsyncMessage('test:next');
        break;

      // blur on the second input results null input context
      case 4:
        is(inputcontext, null, '4) Receving null inputcontext');

        mm.sendAsyncMessage('test:next');
        break;

      // focus on the second input receives the second input context.
      case 5:
        ok(!!inputcontext, '5) Receving the second input context');
        is(inputcontext.textAfterCursor, 'Second');

        mm.sendAsyncMessage('test:next');
        break;

      // focus on the second input should implicitly blur the first input
      case 6:
        is(inputcontext, null, '6) Receving null inputcontext');

        break;

      // ... and results the second input context.
      case 7:
        ok(!!inputcontext, '7) Receving the first input context');
        is(inputcontext.textAfterCursor, 'First');

        mm.sendAsyncMessage('test:next');
        break;

      // remove on the first focused input results null input context
      case 8:
        is(inputcontext, null, '8) Receving null inputcontext');

        mm.sendAsyncMessage('test:next');
        break;

      // input context for the second input.
      case 9:
        ok(!!inputcontext, '9) Receving the second input context');
        is(inputcontext.textAfterCursor, 'Second');

        mm.sendAsyncMessage('test:next');
        break;

      // remove on the second focused input results null input context
      case 10:
        is(inputcontext, null, '10) Receving null inputcontext');

        inputmethod_cleanup();
        break;

      default:
        ok(false, 'Receving extra inputcontextchange calls');
        inputmethod_cleanup();

        break;
    }
  };

  // Set current page as an input method.
  SpecialPowers.wrap(im).setActive(true);

  let iframe = document.createElement('iframe');
  iframe.src = 'file_test_two_selects.html';
  iframe.setAttribute('mozbrowser', true);
  document.body.appendChild(iframe);

  let mm = SpecialPowers.getBrowserFrameMessageManager(iframe);

  iframe.addEventListener('mozbrowserloadend', function() {
    mm.loadFrameScript('data:,(' + encodeURIComponent(appFrameScript.toString()) + ')();', false);
  });
}

</script>
</pre>
</body>
</html>