summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg_variables-view-popup-13.js
blob: d4e5ce52cd5da0e71cb2f5c06ed8ddf3490c207a (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Tests that the variable inspection popup has inspector links for DOMNode
 * properties and that the popup closes when the link is clicked
 */

const TAB_URL = EXAMPLE_URL + "doc_domnode-variables.html";

function test() {
  Task.spawn(function* () {
    let options = {
      source: TAB_URL,
      line: 1
    };
    let [tab,, panel] = yield initDebugger(TAB_URL, options);
    let win = panel.panelWin;
    let bubble = win.DebuggerView.VariableBubble;
    let tooltip = bubble._tooltip.panel;
    let toolbox = gDevTools.getToolbox(panel.target);

    function getDomNodeInTooltip(propertyName) {
      let domNodeProperties = tooltip.querySelectorAll(".token-domnode");
      for (let prop of domNodeProperties) {
        let propName = prop.parentNode.querySelector(".name");
        if (propName.getAttribute("value") === propertyName) {
          ok(true, "DOMNode " + propertyName + " was found in the tooltip");
          return prop;
        }
      }
      ok(false, "DOMNode " + propertyName + " wasn't found in the tooltip");
    }

    let onCaretAndScopes = waitForCaretAndScopes(panel, 19);
    callInTab(tab, "start");
    yield onCaretAndScopes;

    // Inspect the div DOM variable.
    yield openVarPopup(panel, { line: 17, ch: 38 }, true);
    let property = getDomNodeInTooltip("firstElementChild");

    // Simulate mouseover on the property value
    let highlighted = once(toolbox, "node-highlight");
    EventUtils.sendMouseEvent({ type: "mouseover" }, property,
      property.ownerDocument.defaultView);
    yield highlighted;
    ok(true, "The node-highlight event was fired on hover of the DOMNode");

    // Simulate a click on the "select in inspector" button
    let button = property.parentNode.querySelector(".variables-view-open-inspector");
    ok(button, "The select-in-inspector button is present");
    let inspectorSelected = once(toolbox, "inspector-selected");
    EventUtils.sendMouseEvent({ type: "mousedown" }, button,
      button.ownerDocument.defaultView);
    yield inspectorSelected;
    ok(true, "The inspector got selected when clicked on the select-in-inspector");

    // Make sure the inspector's initialization is finalized before ending the test
    // Listening to the event *after* triggering the switch to the inspector isn't
    // a problem as the inspector is asynchronously loaded.
    yield once(toolbox.getPanel("inspector"), "inspector-updated");

    yield resumeDebuggerThenCloseAndFinish(panel);
  });
}