Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions microsoft-edge/web-platform/release-notes/141.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ To stay up-to-date and get the latest web platform features, download a preview
* [Web platform features](#web-platform-features)
* [CSS features](#css-features)
* [CSS `::search-text` pseudo-element](#css-search-text-pseudo-element)
* [Support `width` and `height` presentational attributes on nested `<svg>` elements](#support-width-and-height-presentational-attributes-on-nested-svg-elements)
* [Web APIs](#web-apis)
* [`ariaNotify()` API](#arianotify-api)
* [IndexedDB `getAllRecords()` method and `direction` option for `getAll()` and `getAllKeys()`](#indexeddb-getallrecords-method-and-direction-option-for-getall-and-getallkeys)
Expand Down Expand Up @@ -72,37 +71,6 @@ See also:
* [::search-text](https://drafts.csswg.org/css-pseudo-4/#selectordef-search-text) in _CSS Pseudo-Elements Module Level 4_.


<!-- ---------- -->
###### Support `width` and `height` presentational attributes on nested `<svg>` elements

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.

With this feature, the following two HTML code snippets now produce the same output:

```html
<svg width="100px" height="100px">
<svg style="width:50px;height:50px;">
<circle cx="50px" cy="50px" r="40px" fill="green" />
</svg>
</svg>
```

In the above example, the second line uses a `style` attribute that contains `width` and `height` values.

```html
<svg width="100px" height="100px">
<svg width="50px" height="50px">
<circle cx="50px" cy="50px" r="40px" fill="green" />
</svg>
</svg>
```

In the above example, the second line uses separate `width` and `height` attributes.

See also:
* [`<svg>`](https://developer.mozilla.org/docs/Web/SVG/Reference/Element/svg) at MDN.


<!-- ------------------------------ -->
#### Web APIs

Expand Down
Loading