mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +00:00
81 lines
2.6 KiB
JavaScript
81 lines
2.6 KiB
JavaScript
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* 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 tabbing and entering
|
|
// 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(function*() {
|
|
yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
|
|
let {inspector, view} = yield openRuleView();
|
|
yield selectNode("#testid", inspector);
|
|
yield testEditableFieldFocus(inspector, view, "VK_RETURN");
|
|
yield testEditableFieldFocus(inspector, view, "VK_TAB");
|
|
});
|
|
|
|
function* testEditableFieldFocus(inspector, view, commitKey, options={}) {
|
|
let ruleEditor = getRuleViewRuleEditor(view, 0);
|
|
|
|
let onFocus = once(ruleEditor.element, "focus", true);
|
|
ruleEditor.selectorText.click();
|
|
yield onFocus;
|
|
assertEditor(view, ruleEditor.newPropSpan,
|
|
"Focus should be in the element property span");
|
|
|
|
ruleEditor = getRuleViewRuleEditor(view, 1);
|
|
|
|
yield focusNextEditableField(view, ruleEditor, commitKey, options);
|
|
yield assertEditor(view, ruleEditor.selectorText,
|
|
"Focus should have moved to the next rule selector");
|
|
|
|
for (let textProp of ruleEditor.rule.textProps) {
|
|
let propEditor = textProp.editor;
|
|
|
|
yield focusNextEditableField(view, ruleEditor, commitKey, options);
|
|
yield assertEditor(view, propEditor.nameSpan,
|
|
"Focus should have moved to the property name");
|
|
|
|
yield focusNextEditableField(view, ruleEditor, commitKey, options);
|
|
yield assertEditor(view, propEditor.valueSpan,
|
|
"Focus should have moved to the property value");
|
|
}
|
|
|
|
yield focusNextEditableField(view, ruleEditor, commitKey, options);
|
|
yield assertEditor(view, ruleEditor.newPropSpan,
|
|
"Focus should have moved to the new property span");
|
|
|
|
ruleEditor = getRuleViewRuleEditor(view, 2);
|
|
|
|
yield focusNextEditableField(view, ruleEditor, commitKey, options);
|
|
yield assertEditor(view, ruleEditor.selectorText,
|
|
"Focus should have moved to the next rule selector");
|
|
}
|
|
|
|
function* focusNextEditableField(view, ruleEditor, commitKey, options) {
|
|
let onFocus = once(ruleEditor.element, "focus", true);
|
|
EventUtils.synthesizeKey(commitKey, options, view.styleWindow);
|
|
yield onFocus;
|
|
}
|
|
|
|
function* assertEditor(view, element, message) {
|
|
let editor = inplaceEditor(view.styleDocument.activeElement);
|
|
is(inplaceEditor(element), editor, message);
|
|
}
|