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

"use strict";

// Tests that on selecting colorpicker eyedropper stops picker
// if the picker is already selected.

const TEST_URI = `<style>body{background:red}</style>`;

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

  const { toolbox, view } = await openRuleView();
  const pickerStopped = toolbox.nodePicker.once("picker-stopped");

  await startPicker(toolbox);

  info("Get the background property from the rule-view");
  const property = getRuleViewProperty(view, "body", "background");
  const swatch = property.valueSpan.querySelector(".ruleview-colorswatch");
  ok(swatch, "Color swatch is displayed for the background property");

  info("Open the eyedropper from the colorpicker tooltip");
  await openEyedropper(view, swatch);

  info("Waiting for the picker-stopped event to be fired");
  await pickerStopped;

  ok(true, "picker-stopped event fired after eyedropper was clicked");
});