Bug 1143742 - part5: fix eslint error in inspector ruleview test;r=bustage
MozReview-Commit-ID: 1W2xTQdlkaS
--- a/devtools/client/inspector/rules/test/browser_rules_multiple-properties-unfinished_02.js
+++ b/devtools/client/inspector/rules/test/browser_rules_multiple-properties-unfinished_02.js
@@ -27,18 +27,18 @@ add_task(function*() {
is(ruleEditor.rule.textProps.length, 2,
"Should have created a new text property.");
is(ruleEditor.propertyList.children.length, 2,
"Should have created a property editor.");
// Value is focused, lets add multiple rules here and make sure they get added
onMutation = inspector.once("markupmutation");
onRuleViewChanged = view.once("ruleview-changed");
- let valueEditor = ruleEditor.propertyList.children[1].
- querySelector(".styleinspector-propertyeditor");
+ let valueEditor = ruleEditor.propertyList.children[1]
+ .querySelector(".styleinspector-propertyeditor");
valueEditor.value = "10px;background:orangered;color: black;";
EventUtils.synthesizeKey("VK_RETURN", {}, view.styleWindow);
yield onMutation;
yield onRuleViewChanged;
is(ruleEditor.rule.textProps.length, 4,
"Should have added the changed value.");
is(ruleEditor.propertyList.children.length, 5,