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

"use strict";

// Tests that the color picker tooltip hides when an image tooltip appears.

const TEST_URI = `
  <style type="text/css">
    body {
      color: red;
      background-color: #ededed;
      background-image: url(chrome://branding/content/icon64.png);
      border: 2em solid rgba(120, 120, 120, .5);
    }
  </style>
  Testing the color picker tooltip!
`;

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

  const swatch = getRuleViewProperty(
    view,
    "body",
    "color"
  ).valueSpan.querySelector(".ruleview-colorswatch");

  const bgImageSpan = getRuleViewProperty(
    view,
    "body",
    "background-image"
  ).valueSpan;
  const uriSpan = bgImageSpan.querySelector(".theme-link");

  const colorPicker = view.tooltips.getTooltip("colorPicker");
  info("Showing the color picker tooltip by clicking on the color swatch");
  const onColorPickerReady = colorPicker.once("ready");
  swatch.click();
  await onColorPickerReady;

  info("Now showing the image preview tooltip to hide the color picker");
  const onHidden = colorPicker.tooltip.once("hidden");
  // Hiding the color picker refreshes the value.
  const onRuleViewChanged = view.once("ruleview-changed");
  const previewTooltip = await assertShowPreviewTooltip(view, uriSpan);
  await onHidden;
  await onRuleViewChanged;

  await assertTooltipHiddenOnMouseOut(previewTooltip, uriSpan);

  ok(true, "The color picker closed when the image preview tooltip appeared");
});