summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-zoom.js
blob: ea8b3ef444c561bb8d4fb4f02b0805fe518dfdf9 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";

// Test that the eye dropper works as expected when the page is zoomed-in.

const COLOR_1 = "#aa0000";
const COLOR_2 = "#0bb000";
const COLOR_3 = "#00cc00";
const COLOR_4 = "#000dd0";

const HTML = `
<style>
  body {
    margin: 0;
  }
  div {
    height: 50px;
    width: 50px;
  }
</style>
<div style="background-color: ${COLOR_1};"></div>
<div style="background-color: ${COLOR_2};"></div>
<div style="background-color: ${COLOR_3};"></div>
<div style="background-color: ${COLOR_4};"></div>`;
const TEST_URI = `http://example.com/document-builder.sjs?html=${encodeURIComponent(
  HTML
)}`;

add_task(async function () {
  const { inspector, highlighterTestFront } = await openInspectorForURL(
    TEST_URI
  );

  info("Zoom in the page");
  setContentPageZoomLevel(2);

  const toggleButton = inspector.panelDoc.querySelector(
    "#inspector-eyedropper-toggle"
  );
  toggleButton.click();
  await TestUtils.waitForCondition(() =>
    highlighterTestFront.isEyeDropperVisible()
  );

  ok(true, "Eye dropper is visible");

  const checkColorAt = (...args) =>
    checkEyeDropperColorAt(highlighterTestFront, ...args);

  // ⚠️ Note that we need to check the regular position, not the zoomed-in ones.

  await checkColorAt(
    25,
    10,
    COLOR_1,
    "The eyedropper holds the expected color for the first div"
  );

  await checkColorAt(
    25,
    60,
    COLOR_2,
    "The eyedropper holds the expected color for the second div"
  );

  await checkColorAt(
    25,
    110,
    COLOR_3,
    "The eyedropper holds the expected color for the third div"
  );

  await checkColorAt(
    25,
    160,
    COLOR_4,
    "The eyedropper holds the expected color for the fourth div"
  );

  info("Hide the eyedropper");
  toggleButton.click();
  await TestUtils.waitForCondition(async () => {
    const visible = await highlighterTestFront.isEyeDropperVisible();
    return !visible;
  });
  setContentPageZoomLevel(1);
});