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

"use strict";

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]);
  await waitForContextMenu(dbg);

  selectContextMenuItem(dbg, "#node-menu-restartFrame");
  await waitForDispatch(dbg.store, "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'.");
});