Skip to content

Instantly share code, notes, and snippets.

@karlcow
Last active April 21, 2022 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karlcow/d83b73e92bd589e42e0e05d74dbb7e11 to your computer and use it in GitHub Desktop.
Save karlcow/d83b73e92bd589e42e0e05d74dbb7e11 to your computer and use it in GitHub Desktop.
Comparison of debuggers icons for steps debugging

Debugger tools

Debuggers and icons meaning.

Edge/Blink

debugger-edge

  1. Resume script execution until the next breakpoint if any
  2. Step over line of code
  3. Step into line of code
  4. Step out of line of code
  5. Step (not documented)
  6. Deactivate breakpoints (not documented)
  7. Pause on exceptions (not documented)

Firefox/Gecko Documentation

debugger-firefox

  1. Resume script execution until the next breakpoint if any
  2. Step Over
  3. Step In
  4. Step Out
  5. Deactivate breakpoints
  6. General debugger Settings

Safari/WebKit Documentation

debugger-safari

  1. Disable/Enable All breakpoints
  2. Resume/Continue/Pause script Execution
  3. Step Over
  4. Step Into
  5. Step Out
  6. Step

Some comments

  • Safari Step Into is a lot more detailed than Edge and Firefox, by stepping through all the steps into a function.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment