summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_mark_overridden_06.js
blob: 7ae4e77a02c283f66e1f3403b9288ea2609acb01 (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests that the rule view marks overridden rules correctly after
// editing the selector.

const TEST_URI = `
  <style type='text/css'>
  div {
    background-color: blue;
    background-color: chartreuse;
  }
  </style>
  <div id='testid' class='testclass'>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 testMarkOverridden(inspector, view);
});

async function testMarkOverridden(inspector, view) {
  const elementStyle = view._elementStyle;
  const rule = elementStyle.rules[1];
  checkProperties(rule);

  const ruleEditor = getRuleViewRuleEditor(view, 1);
  info("Focusing an existing selector name in the rule-view");
  const editor = await focusEditableField(view, ruleEditor.selectorText);

  info("Entering a new selector name and committing");
  editor.input.value = "div[class]";

  const onRuleViewChanged = once(view, "ruleview-changed");
  info("Entering the commit key");
  EventUtils.synthesizeKey("KEY_Enter");
  await onRuleViewChanged;

  view.searchField.focus();
  checkProperties(rule);
}

// A helper to perform a repeated set of checks.
function checkProperties(rule) {
  let prop = rule.textProps[0];
  is(
    prop.name,
    "background-color",
    "First property should be background-color"
  );
  is(prop.value, "blue", "First property value should be blue");
  ok(prop.overridden, "prop should be overridden.");
  prop = rule.textProps[1];
  is(
    prop.name,
    "background-color",
    "Second property should be background-color"
  );
  is(prop.value, "chartreuse", "First property value should be chartreuse");
  ok(!prop.overridden, "prop should not be overridden.");
}