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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests that the correct editable fields are focused when shift tabbing
// through the rule view.
const TEST_URI = `
<style type='text/css'>
#testid {
background-color: blue;
color: red;
margin: 0;
padding: 0;
}
div {
border-color: red
}
</style>
<div id='testid'>Styled Node</div>
`;
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openRuleView();
await selectNode("#testid", inspector);
await testEditableFieldFocus(inspector, view, "VK_TAB", { shiftKey: true });
});
async function testEditableFieldFocus(
inspector,
view,
commitKey,
options = {}
) {
let ruleEditor = getRuleViewRuleEditor(view, 2);
const editor = await focusEditableField(view, ruleEditor.selectorText);
is(
inplaceEditor(ruleEditor.selectorText),
editor,
"Focus should be in the 'div' rule selector"
);
ruleEditor = getRuleViewRuleEditor(view, 1);
await focusNextField(view, ruleEditor, commitKey, options);
assertEditor(
view,
ruleEditor.newPropSpan,
"Focus should have moved to the new property span"
);
for (const textProp of ruleEditor.rule.textProps.slice(0).reverse()) {
const propEditor = textProp.editor;
await focusNextField(view, ruleEditor, commitKey, options);
if (
["background-color", "color"].includes(propEditor.nameSpan.textContent)
) {
// background-color and color property value spans have inner focusable elements
// and so, focus needs to move to the inplace editor field where enter needs to be
// pressed to trigger click event on it
await focusNextField(view, ruleEditor, commitKey, options);
EventUtils.sendKey("Return");
}
await assertEditor(
view,
propEditor.valueSpan,
"Focus should have moved to the property value"
);
await focusNextFieldAndExpectChange(view, ruleEditor, commitKey, options);
await assertEditor(
view,
propEditor.nameSpan,
"Focus should have moved to the property name"
);
}
ruleEditor = getRuleViewRuleEditor(view, 1);
await focusNextField(view, ruleEditor, commitKey, options);
await assertEditor(
view,
ruleEditor.selectorText,
"Focus should have moved to the '#testid' rule selector"
);
ruleEditor = getRuleViewRuleEditor(view, 0);
await focusNextField(view, ruleEditor, commitKey, options);
assertEditor(
view,
ruleEditor.newPropSpan,
"Focus should have moved to the new property span"
);
}
async function focusNextFieldAndExpectChange(
view,
ruleEditor,
commitKey,
options
) {
const onRuleViewChanged = view.once("ruleview-changed");
await focusNextField(view, ruleEditor, commitKey, options);
await onRuleViewChanged;
}
async function focusNextField(view, ruleEditor, commitKey, options) {
const onFocus = once(ruleEditor.element, "focus", true);
EventUtils.synthesizeKey(commitKey, options, view.styleWindow);
await onFocus;
}
function assertEditor(view, element, message) {
const editor = inplaceEditor(view.styleDocument.activeElement);
is(inplaceEditor(element), editor, message);
}
|