Mypal/devtools/client/inspector/rules/test/browser_rules_keybindings.js
2021-02-04 16:48:36 +02:00

49 lines
1.6 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test that focus doesn't leave the style editor when adding a property
// (bug 719916)
add_task(function* () {
yield addTab("data:text/html;charset=utf-8,<h1>Some header text</h1>");
let {inspector, view} = yield openRuleView();
yield selectNode("h1", inspector);
info("Getting the ruleclose brace element");
let brace = view.styleDocument.querySelector(".ruleview-ruleclose");
info("Focus the new property editable field to create a color property");
let ruleEditor = getRuleViewRuleEditor(view, 0);
let editor = yield focusNewRuleViewProperty(ruleEditor);
editor.input.value = "color";
info("Typing ENTER to focus the next field: property value");
let onFocus = once(brace.parentNode, "focus", true);
let onRuleViewChanged = view.once("ruleview-changed");
EventUtils.sendKey("return");
yield onFocus;
yield onRuleViewChanged;
ok(true, "The value field was focused");
info("Entering a property value");
editor = getCurrentInplaceEditor(view);
editor.input.value = "green";
info("Typing ENTER again should focus a new property name");
onFocus = once(brace.parentNode, "focus", true);
onRuleViewChanged = view.once("ruleview-changed");
EventUtils.sendKey("return");
yield onFocus;
yield onRuleViewChanged;
ok(true, "The new property name field was focused");
getCurrentInplaceEditor(view).input.blur();
});
function getCurrentInplaceEditor(view) {
return inplaceEditor(view.styleDocument.activeElement);
}