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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
|
"use strict";
let contextMenu;
let hasPocket = Services.prefs.getBoolPref("extensions.pocket.enabled");
const NAVIGATION_ITEMS =
AppConstants.platform == "macosx"
? [
"context-back",
false,
"context-forward",
false,
"context-reload",
true,
"---",
null,
"context-bookmarkpage",
true,
]
: [
"context-navigation",
null,
[
"context-back",
false,
"context-forward",
false,
"context-reload",
true,
"context-bookmarkpage",
true,
],
null,
"---",
null,
];
add_task(async function test_setup() {
const example_base =
"http://example.com/browser/browser/base/content/test/contextMenu/";
const url = example_base + "subtst_contextmenu_input.html";
await BrowserTestUtils.openNewForegroundTab(gBrowser, url);
const chrome_base =
"chrome://mochitests/content/browser/browser/base/content/test/contextMenu/";
const contextmenu_common = chrome_base + "contextmenu_common.js";
/* import-globals-from contextmenu_common.js */
Services.scriptloader.loadSubScript(contextmenu_common, this);
});
add_task(async function test_text_input() {
await test_contextmenu("#input_text", [
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
false,
"---",
null,
"spell-check-enabled",
true,
]);
});
add_task(async function test_text_input_disabled() {
await test_contextmenu(
"#input_disabled",
[
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
false,
"---",
null,
"spell-check-enabled",
true,
],
{ skipFocusChange: true }
);
});
add_task(async function test_password_input() {
await SpecialPowers.pushPrefEnv({
set: [
["signon.generation.enabled", false],
["layout.forms.reveal-password-context-menu.enabled", true],
],
});
todo(
false,
"context-selectall is enabled on osx-e10s, and windows when" +
" it should be disabled"
);
await test_contextmenu(
"#input_password",
[
"manage-saved-logins",
true,
"---",
null,
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
null,
"context-reveal-password",
null,
],
{
skipFocusChange: true,
// Need to dynamically add the "password" type or LoginManager
// will think that the form inputs on the page are part of a login form
// and will add fill-login context menu items. The element needs to be
// re-created as type=text afterwards since it uses hasBeenTypePassword.
async preCheckContextMenuFn() {
await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[],
async function() {
let doc = content.document;
let input = doc.getElementById("input_password");
input.type = "password";
input.clientTop; // force layout flush
}
);
},
async postCheckContextMenuFn() {
await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[],
async function() {
let doc = content.document;
let input = doc.getElementById("input_password");
input.outerHTML = `<input id=\"input_password\">`;
input.clientTop; // force layout flush
}
);
},
}
);
await SpecialPowers.popPrefEnv();
});
add_task(async function test_tel_email_url_number_input() {
todo(
false,
"context-selectall is enabled on osx-e10s, and windows when" +
" it should be disabled"
);
for (let selector of [
"#input_email",
"#input_url",
"#input_tel",
"#input_number",
]) {
await test_contextmenu(
selector,
[
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
null,
],
{
skipFocusChange: true,
}
);
}
});
add_task(
async function test_date_time_color_range_month_week_datetimelocal_input() {
for (let selector of [
"#input_date",
"#input_time",
"#input_color",
"#input_range",
"#input_month",
"#input_week",
"#input_datetime-local",
]) {
await test_contextmenu(
selector,
[
...NAVIGATION_ITEMS,
"context-savepage",
true,
...(hasPocket ? ["context-pocket", true] : []),
"context-selectall",
null,
"---",
null,
"context-viewsource",
true,
],
{
skipFocusChange: true,
}
);
}
}
);
add_task(async function test_search_input() {
todo(
false,
"context-selectall is enabled on osx-e10s, and windows when" +
" it should be disabled"
);
await test_contextmenu(
"#input_search",
[
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
null,
"---",
null,
"spell-check-enabled",
true,
],
{ skipFocusChange: true }
);
});
add_task(async function test_text_input_readonly() {
todo(
false,
"context-selectall is enabled on osx-e10s, and windows when" +
" it should be disabled"
);
todo(
false,
"spell-check should not be enabled for input[readonly]. see bug 1246296"
);
await test_contextmenu(
"#input_readonly",
[
"context-undo",
false,
"context-redo",
false,
"---",
null,
"context-cut",
false,
"context-copy",
false,
"context-paste",
null, // ignore clipboard state
"context-delete",
false,
"context-selectall",
null,
],
{
skipFocusChange: true,
}
);
});
add_task(async function test_cleanup() {
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});
|