summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_edit-selector_06.js
blob: 7d782a309f352461805e3d3e6fcc536cebaac635 (plain)
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
/* 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";

// Testing selector inplace-editor behaviors in the rule-view with unmatched
// selectors

const TEST_URI = `
  <style type="text/css">
    .testclass {
      text-align: center;
    }
    div {
    }
  </style>
  <div class="testclass">Styled Node</div>
`;

add_task(function* () {
  yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  let {inspector, view} = yield openRuleView();
  yield selectNode(".testclass", inspector);
  yield testEditClassSelector(view);
  yield testEditDivSelector(view);
});

function* testEditClassSelector(view) {
  let ruleEditor = getRuleViewRuleEditor(view, 1);
  let editor = yield focusEditableField(view, ruleEditor.selectorText);

  editor.input.value = "body";
  let onRuleViewChanged = once(view, "ruleview-changed");
  EventUtils.synthesizeKey("VK_RETURN", {});
  yield onRuleViewChanged;

  // Get the new rule editor that replaced the original
  ruleEditor = getRuleViewRuleEditor(view, 1);
  let propEditor = ruleEditor.rule.textProps[0].editor;

  info("Check that the correct rules are visible");
  is(view._elementStyle.rules.length, 3, "Should have 3 rules.");
  ok(ruleEditor.element.getAttribute("unmatched"), "Rule editor is unmatched.");
  is(getRuleViewRule(view, ".testclass"), undefined,
    "Rule with .testclass selector should not exist.");
  ok(getRuleViewRule(view, "body"),
    "Rule with body selector exists.");
  is(inplaceEditor(propEditor.nameSpan),
     inplaceEditor(view.styleDocument.activeElement),
     "Focus should have moved to the property name.");
}

function* testEditDivSelector(view) {
  let ruleEditor = getRuleViewRuleEditor(view, 2);
  let editor = yield focusEditableField(view, ruleEditor.selectorText);

  editor.input.value = "asdf";
  let onRuleViewChanged = once(view, "ruleview-changed");
  EventUtils.synthesizeKey("VK_RETURN", {});
  yield onRuleViewChanged;

  // Get the new rule editor that replaced the original
  ruleEditor = getRuleViewRuleEditor(view, 2);

  info("Check that the correct rules are visible");
  is(view._elementStyle.rules.length, 3, "Should have 3 rules.");
  ok(ruleEditor.element.getAttribute("unmatched"), "Rule editor is unmatched.");
  is(getRuleViewRule(view, "div"), undefined,
    "Rule with div selector should not exist.");
  ok(getRuleViewRule(view, "asdf"),
    "Rule with asdf selector exists.");
  is(inplaceEditor(ruleEditor.newPropSpan),
     inplaceEditor(view.styleDocument.activeElement),
     "Focus should have moved to the property name.");
}