summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-restart-frame.js
blob: 7c776e2399254db02d99ab840aabe7eaf5a99c55 (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
/* 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/>. */

// This test checks the 'Restart frame' context menu item in the Call stack.

add_task(async function() {
  const dbg = await initDebugger("doc-scripts.html", "simple3.js");
  await selectSource(dbg, "simple3.js");
  
  info("Invokes function 'nestedA' and pauses in function 'nestedC'.");
  invokeInTab("nestedA");
  await waitForPaused(dbg);

  info("Right clicks frame 'nestedB' and selects 'Restart frame'.");
  const frameEls = findAllElementsWithSelector(dbg, ".pane.frames .frame");
  rightClickEl(dbg, frameEls[1]);

  selectContextMenuItem(dbg, "#node-menu-restart-frame");
  await waitForDispatch(dbg, "COMMAND");
  await waitForPaused(dbg);

  const pauseLine = getVisibleSelectedFrameLine(dbg);
  is(pauseLine, 13, "The debugger is paused on line 13.");

  const frames = dbg.selectors.getCurrentThreadFrames();
  is(frames.length, 2, "Callstack has two frames.");

  const selectedFrame = dbg.selectors.getVisibleSelectedFrame();
  is(selectedFrame.displayName, "nestedB", "The selected frame is 'nestedB'.");
});