You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Fully style the drop-down part of a HTML `<select>` with the new `<selectmenu>` element
424
+
## Fully style the drop-down part of a HTML `<select>` with the `<selectmenu>` element
425
425
426
426
May 31, 2022
427
427
428
428
[](https://www.youtube.com/watch?v=Ts7jvRyQACY)
429
429
430
-
Styling `<select>` elements has been challenging. The experimental `<selectmenu>` (or `<selectlist>`) element promises to overcome the remaining limitations by enabling web developers to style all parts of the element.
430
+
Styling `<select>` elements has been challenging. The experimental `<selectmenu>` (or `<selectlist>`) element promises to overcome the remaining limitations, by enabling web developers to style all parts of the element.
431
431
432
-
June 2024 update: This new element is still experimental. The `<selectmenu>` element was renamed to `<selectlist>` in 2023.
432
+
June 2024 update: This element is still experimental. The `<selectmenu>` element was renamed to `<selectlist>` in 2023.
*[Styling `<select>` elements for real](https://blogs.windows.com/msedgedev/2022/05/05/styling-select-elements-for-real/)<!-- todo: 404 --> - blog post about styling `<select>` elements and the `<selectmenu>` element.
436
+
*[/selectlist/](https://github.com/MicrosoftEdge/Demos/tree/main/selectlist) - Source code and Readme.
*[/reader/](https://github.com/MicrosoftEdge/Demos/tree/main/reader) - Source code and Readme.
439
+
*[Styling `<select>` elements for real](https://blogs.windows.com/msedgedev/2022/05/05/styling-select-elements-for-real/) - blog post about styling `<select>` elements and the `<selectmenu>` element.
@@ -467,7 +470,7 @@ As of July 21, 2023, this feature is no longer experimental, and is now supporte
467
470
468
471
See also:
469
472
*[Reader demo](https://microsoftedge.github.io/Demos/reader/) - demo app that's shown in the video.
470
-
*[Source code for Reader demo](https://github.com/MicrosoftEdge/Demos/tree/main/reader)
473
+
*[Source code and Readme for Reader demo](https://github.com/MicrosoftEdge/Demos/tree/main/reader)
471
474
*[CSS scroll-driven animations](https://developer.mozilla.org/docs/Web/CSS/CSS_scroll-driven_animations) at MDN.
472
475
*[@scroll-timeline](https://developer.mozilla.org/docs/Web/CSS/@scroll-timeline) at MDN: original page about the experimental CSS scroll-linked animations feature.
473
476
@@ -506,6 +509,7 @@ The [CSS Custom Highlight API](https://www.w3.org/TR/css-highlight-api-1/) is th
506
509
507
510
See also:
508
511
*[CSS Custom Highlight API: The Future of Highlighting Text Ranges on the Web](https://css-tricks.com/css-custom-highlight-api-early-loo/)
512
+
*[CSS Custom Highlight API demo](https://github.com/MicrosoftEdge/Demos/tree/main/custom-highlight-api)
Copy file name to clipboardExpand all lines: microsoft-edge/devtools/console/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The **Console** is like an intelligent, rich command line within DevTools, and i
14
14
15
15
The **Console** tool helps with several tasks, which are covered in more detail in the following articles:
16
16
17
-
***Track down problems** to find out why something isn't working in the current project. See [Fix JavaScript errors that are reported in the Console](console-debug-javascript.md).
17
+
***Track down problems** to find out why something isn't working in the current project. See [Fix JavaScript errors reported in the Console](console-debug-javascript.md).
18
18
***Get information about the web project** in the browser as log messages. See [Filter Console messages](console-filters.md).
19
19
***Log information** in scripts for debugging purposes. See [Log messages in the Console tool](console-log.md).
20
20
***Try JavaScript expressions** live in a [REPL](https://wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) environment. See [Run JavaScript in the Console](console-javascript.md).
@@ -48,7 +48,7 @@ Search the web for your **Console** error messages, right from within DevTools.
48
48
49
49

Copy file name to clipboardExpand all lines: microsoft-edge/devtools/memory-problems/heap-snapshots.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ The DevTools heap profiler shows the memory distribution used by the JavaScript
34
34
35
35
<!-- You can view the source files for the Heap Snapshots demo pages at the [MicrosoftEdge/Demos > devtools-memory-heap-snapshot](https://github.com/MicrosoftEdge/Demos/tree/main/devtools-memory-heap-snapshot) repo folder.
36
36
37
-
This article uses five demo webpages, all sourced at https://github.com/MicrosoftEdge/Demos/tree/main/devtools-memory-heap-snapshot -
37
+
This article uses demo webpages sourced at https://github.com/MicrosoftEdge/Demos/tree/main/devtools-memory-heap-snapshot -
* [Example 6: Leaking DOM nodes](https://microsoftedge.github.io/Demos/devtools-memory-heap-snapshot/example-06.html)
40
+
* [Example 7: Eval is evil](https://microsoftedge.github.io/Demos/devtools-memory-heap-snapshot/example-07.html)
41
+
* [Example 8: Recording heap allocations](https://microsoftedge.github.io/Demos/devtools-memory-heap-snapshot/example-08.html) - not linked to
42
42
* [Example 9: DOM leaks bigger than expected](https://microsoftedge.github.io/Demos/devtools-memory-heap-snapshot/example-09.html)
43
43
-->
44
44
@@ -316,6 +316,12 @@ To understand where DOM nodes might leak, and how to detect such leakage, open t
316
316
<!-- You can view the source files for the Heap Snapshots demo pages at the [MicrosoftEdge/Demos > devtools-memory-heap-snapshot](https://github.com/MicrosoftEdge/Demos/tree/main/devtools-memory-heap-snapshot) repo folder. -->
317
317
318
318
319
+
<!-- ------------------------------ -->
320
+
#### Demo webpage: Example 8: Recording heap allocations
321
+
322
+
Open the example webpage [Example 8: Recording heap allocations](https://microsoftedge.github.io/Demos/devtools-memory-heap-snapshot/example-08.html) in a new window or tab.
323
+
324
+
319
325
<!-- ------------------------------ -->
320
326
#### Demo webpage: Example 9: DOM leaks bigger than expected
0 commit comments