summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_picker-shift-key.js
blob: db1d5510e7ab8cdf42e5f70830ecc762fa03d228 (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* 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 node picker can pick elements with pointer-events: none when holding Shift.

const TEST_URI = `data:text/html;charset=utf-8,
  <!DOCTYPE html>
  <main style="display:flex">
    <div id="pointer">Regular element</div>
    <div id="nopointer" style="pointer-events: none">Element with pointer-events: none</div>
    <div id="transluscent" style="pointer-events: none;opacity: 0.1">Element with opacity of 0.1</div>
    <div id="invisible" style="pointer-events: none;opacity: 0">Element with opacity of 0</div>
    <div>
      <header>Hello</header>
      <div style="z-index:-1;position:relative;">
        <span id="negative-z-index-child">ZZ</span>
      </div>
    </div>
  </main>`;
const IS_OSX = Services.appinfo.OS === "Darwin";

add_task(async function () {
  const { inspector, toolbox, highlighterTestFront } =
    await openInspectorForURL(TEST_URI);
  const body = await getNodeFront("body", inspector);
  is(
    inspector.selection.nodeFront,
    body,
    "By default the body node is selected"
  );

  info("Start the element picker");
  await startPicker(toolbox);

  info(
    "Shift-clicking element with pointer-events: none does select the element"
  );
  await clickElement({
    inspector,
    selector: "#nopointer",
    shiftKey: true,
  });
  await checkElementSelected("#nopointer", inspector);

  info("Shift-clicking element with default pointer-events value also works");
  await clickElement({
    inspector,
    selector: "#pointer",
    shiftKey: true,
  });
  await checkElementSelected("#pointer", inspector);

  info(
    "Clicking element with pointer-events: none without holding Shift won't select the element but its parent"
  );
  await clickElement({
    inspector,
    selector: "#nopointer",
    shiftKey: false,
  });
  await checkElementSelected("main", inspector);

  info("Shift-clicking transluscent visible element works");
  await clickElement({
    inspector,
    selector: "#transluscent",
    shiftKey: true,
  });
  await checkElementSelected("#transluscent", inspector);

  info("Shift-clicking invisible element select its parent");
  await clickElement({
    inspector,
    selector: "#invisible",
    shiftKey: true,
  });
  await checkElementSelected("main", inspector);

  info("Shift-clicking element with negative z-index parent works");
  await hoverElement(
    inspector,
    "#negative-z-index-child",
    undefined,
    undefined,
    {
      shiftKey: true,
    }
  );
  is(
    await highlighterTestFront.getHighlighterNodeTextContent(
      "box-model-infobar-id"
    ),
    "#negative-z-index-child",
    "The highlighter is shown on #negative-z-index-child"
  );

  await clickElement({
    inspector,
    selector: "#negative-z-index-child",
    shiftKey: true,
  });
  await checkElementSelected("#negative-z-index-child", inspector);
});

async function clickElement({ selector, inspector, shiftKey }) {
  const onSelectionChanged = inspector.once("inspector-updated");
  await safeSynthesizeMouseEventAtCenterInContentPage(selector, {
    shiftKey,
    // Hold meta/ctrl so we don't have to start the picker again
    [IS_OSX ? "metaKey" : "ctrlKey"]: true,
  });
  await onSelectionChanged;
}

async function checkElementSelected(selector, inspector) {
  const el = await getNodeFront(selector, inspector);
  is(
    inspector.selection.nodeFront,
    el,
    `The element ${selector} is now selected`
  );
}