Skip to content

Commit

Permalink
Merge pull request #3086 from MicrosoftDocs/user/mikehoffms/crash-ana…
Browse files Browse the repository at this point in the history
…lyzer-tool

New article "Crash analyzer tool"
  • Loading branch information
captainbrosset authored Jul 12, 2024
2 parents 9b5e638 + f4584bf commit 00e24a2
Show file tree
Hide file tree
Showing 20 changed files with 278 additions and 4 deletions.
3 changes: 2 additions & 1 deletion microsoft-edge/devtools-guide-chromium/about-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ms.author: msedgedevrel
ms.topic: conceptual
ms.service: microsoft-edge
ms.subservice: devtools
ms.date: 07/17/2023
ms.date: 03/01/2024
---
# About the list of tools

Expand Down Expand Up @@ -39,6 +39,7 @@ Microsoft Edge DevTools includes the following tools.
| **Changes** tool | Tracks any changes you've made to CSS or JavaScript in DevTools. Shows you what changes to make to your actual source files after you use DevTools to modify your webpage files sent from the server. | [Track changes to files using the Changes tool](changes/changes-tool.md) |
| **Console** tool | An intelligent, rich command line within DevTools. A great companion tool to use with others tools. Provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript. | [Console overview](console/index.md) |
| **Coverage** tool | Help you find unused JavaScript and CSS code, to speed up your page load and save your mobile users cellular data. | [Find unused JavaScript and CSS code with the Coverage tool](coverage/index.md) |
| **Crash analyzer** tool | Analyze crashes of your web app. You can input a JavaScript production stack trace, such as for non-fatal JavaScript exceptions, and then have your source maps applied to the stack trace so that you can debug faster. | [Crash analyzer tool](./crash-analyzer/index.md) |
| **CSS Overview** tool | Help you better understand your page's CSS and identify potential improvements. | [CSS Overview tool](css/css-overview-tool.md) |
| **Detached Elements** tool | To increase the performance of your page, this tool finds detached elements that the browser cannot garbage-collect, and identifies the JavaScript object that is still referencing the detached element. By changing your JavaScript to release the element, you reduce the number of detached elements on your page, increasing page performance and responsiveness. | [Debug DOM memory leaks with the Detached Elements tool](memory-problems/dom-leaks.md) |
| **Developer Resources** | Shows resource URLs for the webpage. | [Developer Resources tool](developer-resources/developer-resources.md) |
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
263 changes: 263 additions & 0 deletions microsoft-edge/devtools-guide-chromium/crash-analyzer/index.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ You can report non-fatal JavaScript exceptions or similar data to tools such as

1. Click through the individual stack frames to see the lines in your original code that caused the error.

<!-- todo: For more information, see [Crash Analyzer](../../../crash-analyzer/index.md). -->
For more information, see [Crash analyzer tool](../../../crash-analyzer/index.md).

See also:
* [throw - JavaScript | MDN Web Docs](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/throw)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ The **Crash analyzer** tool helps you create a JavaScript stack trace, and appli

![The Crash analyzer tool](./devtools-123-images/crash-analyzer-tool.png)

<!--
See also:
* [Crash analyzer tool](../../../crash-analyzer/index.md)
todo: after merging PR 3086 (New article "Crash analyzer tool"), un-comment -->


<!-- ====================================================================== -->
Expand Down
12 changes: 12 additions & 0 deletions microsoft-edge/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,18 @@
- name: Find unused JavaScript and CSS code with the Coverage tool
href: devtools-guide-chromium/coverage/index.md
displayName: Coverage tool
# Crash analyzer --------------------------------------------------------------
- name: Crash analyzer tool
items:
- name: Crash analyzer tool
href: devtools-guide-chromium/crash-analyzer/index.md
# CSP Violations --------------------------------------------------------------
# - name: CSP Violations tool
# https://learn.microsoft.com/microsoft-edge/devtools-guide-chromium/experimental-features/#show-csp-violations-view
# items:
# - name: Display Content Security Policy (CSP) violations
# href: devtools-guide-chromium/csp-violations/csp-violations-tool.md
# displayName: CSP Violations tool
# CSS Overview tool -----------------------------------------------------------
- name: CSS Overview tool
items:
Expand Down

0 comments on commit 00e24a2

Please sign in to comment.