Skip to content

Commit f89ea3a

Browse files
authored
Merge pull request #3688 from MicrosoftDocs/main
main to live - Jan 14, 2026
2 parents ad74e7b + ba40ac7 commit f89ea3a

File tree

1 file changed

+0
-32
lines changed
  • microsoft-edge/web-platform/release-notes

1 file changed

+0
-32
lines changed

microsoft-edge/web-platform/release-notes/141.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ To stay up-to-date and get the latest web platform features, download a preview
2020
* [Web platform features](#web-platform-features)
2121
* [CSS features](#css-features)
2222
* [CSS `::search-text` pseudo-element](#css-search-text-pseudo-element)
23-
* [Support `width` and `height` presentational attributes on nested `<svg>` elements](#support-width-and-height-presentational-attributes-on-nested-svg-elements)
2423
* [Web APIs](#web-apis)
2524
* [`ariaNotify()` API](#arianotify-api)
2625
* [IndexedDB `getAllRecords()` method and `direction` option for `getAll()` and `getAllKeys()`](#indexeddb-getallrecords-method-and-direction-option-for-getall-and-getallkeys)
@@ -72,37 +71,6 @@ See also:
7271
* [::search-text](https://drafts.csswg.org/css-pseudo-4/#selectordef-search-text) in _CSS Pseudo-Elements Module Level 4_.
7372

7473

75-
<!-- ---------- -->
76-
###### Support `width` and `height` presentational attributes on nested `<svg>` elements
77-
78-
You can now use the `width` and `height` presentational attributes on nested `<svg>` elements, through both SVG markup and CSS. This approach provides greater flexibility, allowing you to style SVG elements more efficiently within complex designs.
79-
80-
With this feature, the following two HTML code snippets now produce the same output:
81-
82-
```html
83-
<svg width="100px" height="100px">
84-
<svg style="width:50px;height:50px;">
85-
<circle cx="50px" cy="50px" r="40px" fill="green" />
86-
</svg>
87-
</svg>
88-
```
89-
90-
In the above example, the second line uses a `style` attribute that contains `width` and `height` values.
91-
92-
```html
93-
<svg width="100px" height="100px">
94-
<svg width="50px" height="50px">
95-
<circle cx="50px" cy="50px" r="40px" fill="green" />
96-
</svg>
97-
</svg>
98-
```
99-
100-
In the above example, the second line uses separate `width` and `height` attributes.
101-
102-
See also:
103-
* [`<svg>`](https://developer.mozilla.org/docs/Web/SVG/Reference/Element/svg) at MDN.
104-
105-
10674
<!-- ------------------------------ -->
10775
#### Web APIs
10876

0 commit comments

Comments
 (0)