How do I debug a tab crash in Google Chrome How do I debug a tab crash in Google Chrome google-chrome google-chrome

How do I debug a tab crash in Google Chrome


Once WinDbg breaks in, use this command to create a full crash dump:

.dump /ma C:\Path\To\A\CrashDump\File.dmp


If you want analyze only specific tab, you should follow below steps.

  • Open Chrome's Task Manager (View Background Pages option in menu).
  • Right click on grid and activate Process ID column.
  • And attach windbg to this pid.


Follow the instructions on http://www.chromium.org/for-testers/bug-reporting-guidelines/reporting-crash-bug to report the renderer crash so the Chromium developers can debug it.