summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_edit-property_08.js
blob: 1becd40d9c2778364f36dcb32518866cdcca5126 (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
/* 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";

// Test that renaming a property works.

const TEST_URI = `
  <style type="text/css">
  #testid {
    color: #FFF;
  }
  </style>
  <div style='color: red' 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);

  info("Get the color property editor");
  let ruleEditor = getRuleViewRuleEditor(view, 0);
  let propEditor = ruleEditor.rule.textProps[0].editor;
  is(ruleEditor.rule.textProps[0].name, "color");

  info("Focus the property name field");
  yield focusEditableField(ruleEditor.ruleView, propEditor.nameSpan, 32, 1);

  info("Rename the property to background-color");
  // Expect 3 events: the value editor being focused, the ruleview-changed event
  // which signals that the new value has been previewed (fires once when the
  // value gets focused), and the markupmutation event since we're modifying an
  // inline style.
  let onValueFocus = once(ruleEditor.element, "focus", true);
  let onRuleViewChanged = ruleEditor.ruleView.once("ruleview-changed");
  let onMutation = inspector.once("markupmutation");
  EventUtils.sendString("background-color:", ruleEditor.doc.defaultView);
  yield onValueFocus;
  yield onRuleViewChanged;
  yield onMutation;

  is(ruleEditor.rule.textProps[0].name, "background-color");
  yield waitForComputedStyleProperty("#testid", null, "background-color",
    "rgb(255, 0, 0)");

  is((yield getComputedStyleProperty("#testid", null, "color")),
    "rgb(255, 255, 255)", "color is white");

  // The value field is still focused. Blur it now and wait for the
  // ruleview-changed event to avoid pending requests.
  onRuleViewChanged = view.once("ruleview-changed");
  EventUtils.synthesizeKey("VK_ESCAPE", {});
  yield onRuleViewChanged;
});