browser/devtools/debugger/test/browser_dbg_variables-view-popup-09.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* Any copyright is dedicated to the Public Domain.
     2    http://creativecommons.org/publicdomain/zero/1.0/ */
     4 /**
     5  * Tests opening inspecting variables works across scopes.
     6  */
     8 const TAB_URL = EXAMPLE_URL + "doc_scope-variable-3.html";
    10 function test() {
    11   Task.spawn(function() {
    12     let [tab, debuggee, panel] = yield initDebugger(TAB_URL);
    13     let win = panel.panelWin;
    14     let bubble = win.DebuggerView.VariableBubble;
    15     let tooltip = bubble._tooltip.panel;
    17     // Allow this generator function to yield first.
    18     executeSoon(() => debuggee.test());
    19     yield waitForSourceAndCaretAndScopes(panel, ".html", 15);
    21     yield openVarPopup(panel, { line: 12, ch: 10 });
    22     ok(true, "The variable inspection popup was shown for the real variable.");
    24     once(tooltip, "popupshown").then(() => {
    25       ok(false, "The variable inspection popup shouldn't have been opened.");
    26     });
    28     reopenVarPopup(panel, { line: 18, ch: 10 });
    29     yield waitForTime(1000);
    31     yield resumeDebuggerThenCloseAndFinish(panel);
    32   });
    33 }

mercurial