summaryrefslogtreecommitdiffstats
path: root/devtools/client/dom/test/browser_dom_nodes_highlight.js
blob: 311a52b30cedf9a4011138fa26debfc8740029f0 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const TEST_PAGE_URL = URL_ROOT + "page_dom_nodes.html";

/**
 * Checks that hovering nodes highlights them in the content page
 */
add_task(async function () {
  info("Test DOM panel node highlight started");

  const { panel, tab } = await addTestTab(TEST_PAGE_URL);
  const toolbox = await gDevTools.getToolboxForTab(tab);
  const highlighter = toolbox.getHighlighter();

  const tests = [
    {
      expected: "h1",
      getNode: async () => {
        return getRowByIndex(panel, 0).querySelector(".objectBox-node");
      },
    },
    {
      expected: "h2",
      getNode: async () => {
        info("Expand specified row and wait till children are displayed");
        await expandRow(panel, "B");
        return getRowByIndex(panel, 1).querySelector(".objectBox-node");
      },
    },
  ];

  for (const test of tests) {
    info(`Get the NodeFront for ${test.expected}`);
    const node = await test.getNode();

    info("Highlight the node by moving the cursor on it");
    const onHighlighterShown = highlighter.waitForHighlighterShown();
    EventUtils.synthesizeMouseAtCenter(
      node,
      {
        type: "mouseover",
      },
      node.ownerDocument.defaultView
    );
    const { nodeFront } = await onHighlighterShown;
    is(
      nodeFront.displayName,
      test.expected,
      "The correct node was highlighted"
    );

    info("Unhighlight the node by moving the cursor away from it");
    const onHighlighterHidden = highlighter.waitForHighlighterHidden();
    const btn = toolbox.doc.querySelector("#toolbox-meatball-menu-button");
    EventUtils.synthesizeMouseAtCenter(
      btn,
      {
        type: "mouseover",
      },
      btn.ownerDocument.defaultView
    );

    const { nodeFront: unhighlightedNode } = await onHighlighterHidden;
    is(
      unhighlightedNode.displayName,
      test.expected,
      "The node was unhighlighted"
    );
  }
});