browser/devtools/debugger/test/browser_dbg_variables-view-popup-03.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 that the inspected indentifier is highlighted.
     6  */
     8 const TAB_URL = EXAMPLE_URL + "doc_frame-parameters.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;
    16     // Allow this generator function to yield first.
    17     executeSoon(() => debuggee.start());
    18     yield waitForSourceAndCaretAndScopes(panel, ".html", 24);
    20     // Inspect variable.
    21     yield openVarPopup(panel, { line: 15, ch: 12 });
    23     ok(bubble.contentsShown(),
    24       "The variable should register as being shown.");
    25     ok(!bubble._tooltip.isEmpty(),
    26       "The variable inspection popup isn't empty.");
    27     ok(bubble._markedText,
    28       "There's some marked text in the editor.");
    29     ok(bubble._markedText.clear,
    30       "The marked text in the editor can be cleared.");
    32     yield hideVarPopup(panel);
    34     ok(!bubble.contentsShown(),
    35       "The variable should register as being hidden.");
    36     ok(bubble._tooltip.isEmpty(),
    37       "The variable inspection popup is now empty.");
    38     ok(!bubble._markedText,
    39       "The marked text in the editor was removed.");
    41     yield resumeDebuggerThenCloseAndFinish(panel);
    42   });
    43 }

mercurial