UI Tour

This article is a quick tour of the main sections of the JavaScript Debugger's user interface. The UI is split vertically into three panels

Source list pane

The source list pane lists all the JavaScript source files loaded into the page, and enables you to select one to debug. At the top level sources are organized by origin, and under that they're organized by the directory structure from which they are served.

You can search for a file using Ctrl + P (Cmd + P on a Mac).

Web Extensions are listed in the Source List pane using the extension's name.

There are several context menu options available for individual files and folders or groups; typically viewed by right-clicking on the item.

For files, the following context menu options are available:

Screenshot showing the context menu options for files in the source list pane

  • Copy source URI copies the full identifier of the file to the clipboard.
  • Ignore source causes the debugger to skip the file when "stepping into" functions; this can be helpful for avoiding stepping into libraries used by your code. When a file is ignored, it has a small eye icon next to it in place of its regular icon.
  • Download file opens a file dialog so you can save the file locally.

For folders and groups, the following context menu options are available:

Screenshot showing context menu options for folders in the source list pane

  • Collapse all collapses all subfolders of the item.
  • Expand all expands all subfolders of the item.
  • Set directory root changes the Source List view so that only that item and its children are visible. The name of the selected directory is shown at the top of the Source List pane; clicking this name reverts the pane to showing all source items.
  • Ignore (since Firefox 76)
    • Ignore files in this directory causes all files within the selected directory to be skipped by the debugger. All child files acquired the eye icon, and the folder menu option changes to Unignore files in this directory.
    • Ignore files outside this directory causes all files other than those within the selected directory to be skipped by the debugger. All such files acquire the eye icon, and the menu option for that folder changes to Unignore files outside this directory.

Outline View

The Outline view shows a tree for navigating the currently open file. Use it to jump directly to a function, class or method definition.

Source pane

This shows the JavaScript file currently loaded.

When the source pane is focused you can search for a string in the file using Ctrl + F (Cmd + F on a Mac).

Breakpoints have a blue arrow overlaid on the line number. Conditional breakpoints have an orange arrow. If you're stopped at a breakpoint, the entire line gets a green overlay. In the screenshot below there are three breakpoints:

  • line 82 has a normal breakpoint and execution is paused here
  • line 85 has a logpoint which logs the contents of tablerow to the console
  • line 100 has a conditional breakpoint

The third column shows more information about the breakpoints. For example, the logpoint at line 85 logs the value of the tableRow variable to the console and the conditional breakpoint at line 100 breaks if the contents of the todoList is undefined.

Toolbar

At the top of the right-hand pane, there's a toolbar:

Screenshot of the Debugger toolbar, showing the Options menu

The toolbar consists of:

  • Four buttons to control the debugger's movement through the script:
    • Play/pause (F8): pauses or resumes execution of the script you're debugging. When it displays a "play" icon, that means the script is paused, either because you've paused it with this button or because you've hit a breakpoint.
    • Step over (F10): steps to the next line of JavaScript code.
    • Step in (F11): steps into the function call on the current line of JavaScript code.
    • Step out (Shift-F11): runs the script until the current function exits.
  • A button that deactivates all breakpoints.
  • A settings menu that contains:
    • Disable JavaScript: disables JavaScript for this tab. This option enables you to see how your web page looks if the user has disabled JavaScript via an extension or a configuration setting. The setting is reset when the Developer Tools are closed (except in Firefox 77, see bug 1640318).
    • Inline Variable Preview: enabled by default, this option displays variable values within the source pane when the debugger is paused.
    • Source Maps: enabled by default, this option directs the Debugger to load the original versions of files, and map them to the generated ones loaded in a page, to ease debugging of translformed sources. See Use a source map for details.

Breakpoints list

Under the toolbar, you'll see all the breakpoints you've set. Next to each breakpoint is a checkbox which you can use to enable/disable it:

Watch expressions

You can add watch expressions in the right pane. They will be evaluated when code execution is paused:

Variable tooltip

Hover on a variable show a tooltip with its value inside:

Call stack

When the debugger's paused, you'll see a call stack:

Each level of the call stack gets a line, with the name of the function and the filename and line number. Clicking a line selects the corresponding line in the source pane.

Note: If you click Step over (F10) after changing the selected line in the source pane, the debugger executes until reaching the line following the newly-selected line (disregarding whatever line the debugger originally stopped at).

Right-clicking in the call stack pane opens a context menu with the following items:

  • Restart frame restarts execution at the beginning of the current frame.
  • Enable framework grouping collects items belonging to a framework into a collapsible group (for example, jQuery in the screenshot above). When grouping is enabled, the menu option changes to Disable framework grouping.
  • Copy source URI copies the full identifier of the source file to the clipboard.
  • Ignore source causes the debugger to skip the file when "stepping into" functions. Any stack frames from the ignored source file are hidden in the call stack pane. (To remove this restriction, choose Unignore source in the context menu of the Sources list or the Source pane.)
  • Copy stack trace copies all items in the call stack (including their URIs and line number) to the clipboard.

Scopes

In the right-hand pane you'll see a label "Scopes" with a disclosure arrow next to it. When the debugger's paused, you'll be able to expand this section to see all objects that are in scope at this point in the program:

A screenshot of the Debugger, with the Scopes pane highlightedObjects are organized by scope: the most local appears first, and the global scope (Window, in the case of page scripts) appears last.

Within the Scopes pane, you can create watchpoints that pause the debugger when a value is read or assigned.