summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_colorpicker-multiple-changes.js
blob: f641745fd2e80fc129d898039c7e4773648fd27b (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests that the color in the colorpicker tooltip can be changed several times.
// without causing error in various cases:
// - simple single-color property (color)
// - color and image property (background-image)
// - overridden property
// See bug 979292 and bug 980225

const TEST_URI = `
  <style type="text/css">
    body {
      color: green;
      background: red url("chrome://branding/content/icon64.png")
        no-repeat center center;
    }
    p {
      color: blue;
    }
  </style>
  <p>Testing the color picker tooltip!</p>
`;

add_task(async function () {
  await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  const { inspector, view } = await openRuleView();

  await testSimpleMultipleColorChanges(inspector, view);
  await testComplexMultipleColorChanges(inspector, view);
});

async function testSimpleMultipleColorChanges(inspector, ruleView) {
  await selectNode("p", inspector);

  info("Getting the <p> tag's color property");
  const swatch = getRuleViewProperty(
    ruleView,
    "p",
    "color"
  ).valueSpan.querySelector(".ruleview-colorswatch");

  info("Opening the color picker");
  const picker = ruleView.tooltips.getTooltip("colorPicker");
  const onColorPickerReady = picker.once("ready");
  swatch.click();
  await onColorPickerReady;

  info("Changing the color several times");
  const colors = [
    { rgba: [0, 0, 0, 1], computed: "rgb(0, 0, 0)" },
    { rgba: [100, 100, 100, 1], computed: "rgb(100, 100, 100)" },
    { rgba: [200, 200, 200, 1], computed: "rgb(200, 200, 200)" },
  ];
  for (const { rgba, computed } of colors) {
    await simulateColorPickerChange(ruleView, picker, rgba, {
      selector: "p",
      name: "color",
      value: computed,
    });
  }

  is(
    await getComputedStyleProperty("p", null, "color"),
    "rgb(200, 200, 200)",
    "The color of the P tag is correct"
  );
}

async function testComplexMultipleColorChanges(inspector, ruleView) {
  await selectNode("body", inspector);

  info("Getting the <body> tag's color property");
  const swatch = getRuleViewProperty(
    ruleView,
    "body",
    "background"
  ).valueSpan.querySelector(".ruleview-colorswatch");

  info("Opening the color picker");
  const picker = ruleView.tooltips.getTooltip("colorPicker");
  const onColorPickerReady = picker.once("ready");
  swatch.click();
  await onColorPickerReady;

  info("Changing the color several times");
  const colors = [
    { rgba: [0, 0, 0, 1], computed: "rgb(0, 0, 0)" },
    { rgba: [100, 100, 100, 1], computed: "rgb(100, 100, 100)" },
    { rgba: [200, 200, 200, 1], computed: "rgb(200, 200, 200)" },
  ];
  for (const { rgba, computed } of colors) {
    await simulateColorPickerChange(ruleView, picker, rgba, {
      selector: "body",
      name: "background-color",
      value: computed,
    });
  }

  info("Closing the color picker");
  await hideTooltipAndWaitForRuleViewChanged(picker, ruleView);

  is(
    await getComputedStyleProperty("p", null, "color"),
    "rgb(200, 200, 200)",
    "The color of the P tag is still correct"
  );
}