Skip to content

Commit 7a81dce

Browse files
committed
Merge branch 'main' into user/mikehoff/relnotes-mar-2025
2 parents c494be2 + eea1328 commit 7a81dce

93 files changed

Lines changed: 1224 additions & 720 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

microsoft-edge/dev-videos/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ April 26, 2023
112112

113113
Covers:
114114
* Unminified JS names for OOPIFs in the **Performance** tool.
115-
* Non-simple CSS selectors in the **CSS Overview** tool.
115+
* Non-simple CSS selectors in the **CSS overview** tool.
116116
* Code folding in the JSON viewer.
117117
* Improvements in the DevTools UI.
118118
* New markers for logpoints and conditional breakpoints.

microsoft-edge/develop-web-microsoft-edge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Develop for the web with Microsoft Edge by using standards-based web platform fe
1616
## Release notes
1717

1818
To stay up to date with web platform feature changes in Microsoft Edge and the Chromium open-source project, see:
19-
* [Release Notes for web platform for Microsoft Edge](./web-platform/release-notes/index.md)
19+
* [Release notes for Microsoft Edge web platform](./web-platform/release-notes/index.md)
2020
* [Site compatibility-impacting changes coming to Microsoft Edge](./web-platform/site-impacting-changes.md)
2121

2222

microsoft-edge/developer/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ landingContent:
4949
linkLists:
5050
- linkListType: whats-new
5151
links:
52-
- text: Release Notes for web platform for Microsoft Edge
52+
- text: Release notes for Microsoft Edge web platform
5353
url: ../web-platform/release-notes/index.md
5454

5555
- text: Site compatibility-impacting changes

microsoft-edge/devtools-guide-chromium/about-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ Microsoft Edge DevTools includes the following tools.
4040
| **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) |
4141
| **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) |
4242
| **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) |
43-
| **CSS Overview** tool | Help you better understand your page's CSS and identify potential improvements. | [CSS Overview tool](css/css-overview-tool.md) |
43+
| **CSS overview** tool | Help you better understand your page's CSS and identify potential improvements. | [CSS overview tool](css/css-overview-tool.md) |
4444
| **Detached Elements** tool | To increase the performance of your webpage, find detached elements that the browser can't garbage-collect, and then identify the JavaScript object that's still referencing the detached element. Then change your JavaScript to release the element, to reduce the number of detached elements on your page, increasing page performance and responsiveness. | [Debug DOM memory leaks by using the Detached Elements tool](memory-problems/dom-leaks.md) |
45-
| **Developer Resources** | Shows resource URLs for the webpage. | [Developer Resources tool](developer-resources/developer-resources.md) |
45+
| **Developer resources** | Shows resource URLs for the webpage. | [Developer resources tool](developer-resources/developer-resources.md) |
4646
| **Device Emulation** | Use the **Device Emulation** tool, also called _Device Simulation Mode_ or _Device Mode_, to approximate how your page looks and responds on a mobile device. | [Emulate mobile devices (Device Emulation)](device-mode/index.md) |
4747
| **Elements** tool | Inspect, edit, and debug your HTML and CSS. You can edit in the tool while displaying the changes live in the browser. Debug your HTML using the DOM tree, and inspect and work on the CSS for your webpage. | [Inspect, edit, and debug HTML and CSS with the Elements tool](elements-tool/elements-tool.md) |
4848
| **Inspect** tool | Use the **Inspect** tool to see information about an item within a rendered webpage. When the **Inspect** tool is active, you _hover_ over items in the webpage, and DevTools adds an information overlay and grid highlighting on the webpage. | [Analyze pages using the Inspect tool](css/inspect.md) |

microsoft-edge/devtools-guide-chromium/console/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 07/12/2023
1010
---
1111
# Console overview
1212

13-
The **Console** is like an intelligent, rich command line within DevTools, and is great companion tool to use with others tools. The **Console** provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript.
13+
The **Console** is like an intelligent, rich command line within DevTools, and is a great companion tool to use with other tools. The **Console** provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript.
1414

1515
The **Console** tool helps with several tasks, which are covered in more detail in the following articles:
1616

microsoft-edge/devtools-guide-chromium/css/css-overview-tool.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
---
2-
title: Optimize CSS styles with the CSS Overview tool
3-
description: The CSS Overview tool in Microsoft Edge DevTools.
2+
title: Optimize CSS styles with the CSS overview tool
3+
description: The CSS overview tool in Microsoft Edge DevTools.
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
66
ms.topic: conceptual
77
ms.service: microsoft-edge
88
ms.subservice: devtools
99
ms.date: 09/07/2022
1010
---
11-
# Optimize CSS styles with the CSS Overview tool
11+
# Optimize CSS styles with the CSS overview tool
1212

13-
The **CSS Overview** tool captures an overview of the CSS code used on a webpage and displays a report about the colors, fonts, and media-queries used. The tool also identifies potential color contrast issues and unused CSS declarations issues.
13+
The **CSS overview** tool captures an overview of the CSS code used on a webpage and displays a report about the colors, fonts, and media-queries used. The tool also identifies potential color contrast issues and unused CSS declarations issues.
1414

1515

1616
<!-- ====================================================================== -->
17-
## Open the CSS Overview tool
17+
## Open the CSS overview tool
1818

19-
To open the **CSS Overview** tool:
19+
To open the **CSS overview** tool:
2020

2121
1. Navigate to the [TODO list demo app](https://microsoftedge.github.io/Demos/demo-to-do/) in Microsoft Edge, or to your own webpage.
2222

2323
1. Open DevTools by pressing **F12** or **Ctrl+Shift+I** (Windows, Linux) or **Command+Option+I** (macOS).
2424

25-
1. In the main toolbar, click **More Tools** and select **CSS Overview** from the list.
25+
1. In the main toolbar, click **More Tools** and select **CSS overview** from the list.
2626

2727
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing the list of tools from the More Tools button](./css-overview-tool-images/css-overview-tool-open.png)
2828

29-
1. The **CSS Overview** tool opens and shows a welcome screen.
29+
1. The **CSS overview** tool opens and shows a welcome screen.
3030

31-
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing the CSS Overview welcome screen](./css-overview-tool-images/css-overview-tool-welcome.png)
31+
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing the CSS overview welcome screen](./css-overview-tool-images/css-overview-tool-welcome.png)
3232

3333

3434
<!-- ====================================================================== -->
3535
## Capture a CSS overview report
3636

3737
Start using the tool by capturing a new report. Click **Capture overview**, the overview report appears.
3838

39-
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing the CSS Overview report for that site](./css-overview-tool-images/css-overview-tool-report.png)
39+
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing the CSS overview report for that site](./css-overview-tool-images/css-overview-tool-report.png)
4040

4141
If you make changes to your webpage and want to view a new report, click **Clear overview** and then capture a new overview.
4242

43-
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing a CSS Overview report with the Clear overview button at the top](./css-overview-tool-images/css-overview-tool-clear.png)
43+
![Microsoft Edge, with the TODO list demo app, and DevTools next to it, showing a CSS overview report with the Clear overview button at the top](./css-overview-tool-images/css-overview-tool-clear.png)
4444

4545

4646
<!-- ====================================================================== -->
@@ -56,7 +56,7 @@ The CSS overview report contains information organized into several sections:
5656

5757
To view the sections of the report, use the scrollbar or click the sections in the sidebar:
5858

59-
![TODO demo app on the left, DevTools CSS Overview report on the right with a clickable list of sections and scrollbar](./css-overview-tool-images/css-overview-tool-scroll.png)
59+
![TODO demo app on the left, DevTools CSS overview report on the right with a clickable list of sections and scrollbar](./css-overview-tool-images/css-overview-tool-scroll.png)
6060

6161

6262
<!-- ------------------------------ -->
@@ -156,7 +156,7 @@ Non-simple selectors are more complicated and tend to match more elements, poten
156156

157157
To see the list of non-simple selectors, on the overview report, click **Non-simple selectors** in the sidebar to scroll to the relevant section of the report:
158158

159-
![The Non-simple selectors list in the CSS Overview tool](./css-overview-tool-images/non-simple-selectors-in-css-overview.png)
159+
![The Non-simple selectors list in the CSS overview tool](./css-overview-tool-images/non-simple-selectors-in-css-overview.png)
160160

161161
From here, you can further analyze the impact of your changes and individual selector performance by using the **Selector Stats** feature in the **Performance** tool.
162162

@@ -177,13 +177,13 @@ To find color contrast issues:
177177

178178
1. Open DevTools by pressing **Ctrl+Shift+I** (Windows, Linux) or **Command+Option+I** (macOS).
179179

180-
1. In the main toolbar, click **More Tools** and select **CSS Overview** from the list.
180+
1. In the main toolbar, click **More Tools** and select **CSS overview** from the list.
181181

182-
1. In the **CSS Overview** tool, click **Capture overview** and then click **Colors** in the overview report sidebar.
182+
1. In the **CSS overview** tool, click **Capture overview** and then click **Colors** in the overview report sidebar.
183183

184184
1. Scroll down to the **Contrast issues** sub-section to view all issues.
185185

186-
![Microsoft Edge, with the TODO list demo app and DevTools, showing a list of contrast issues in the CSS Overview report](./css-overview-tool-images/css-overview-tool-contrast-issues.png)
186+
![Microsoft Edge, with the TODO list demo app and DevTools, showing a list of contrast issues in the CSS overview report](./css-overview-tool-images/css-overview-tool-contrast-issues.png)
187187

188188
1. To view the elements that have a particular color contrast issue, choose the issue you want to fix and click **Text**. The corresponding elements are listed.
189189

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Developer Resources tool
3-
description: The Developer Resources tool in Microsoft Edge DevTools.
2+
title: Developer resources tool
3+
description: The Developer resources tool in Microsoft Edge DevTools.
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
66
ms.topic: conceptual
77
ms.service: microsoft-edge
88
ms.subservice: devtools
99
ms.date: 02/15/2022
1010
---
11-
# Developer Resources tool
11+
# Developer resources tool
1212

13-
Use the **Developer Resources** tool to view resource URLs for the webpage.
13+
Use the **Developer resources** tool to view resource URLs for the webpage.
1414

15-
![The Developer Resources tool](./developer-resources-images/developer-resources-tool.png)
15+
![The Developer resources tool](./developer-resources-images/developer-resources-tool.png)

0 commit comments

Comments
 (0)