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
* New beta web platform release notes
* Finalized relnotes content
* In-article TOC
* Fix md tagging
* Writer/Editor pass
* sdk expect dates
* New beta web platform release notes
* Writer/Editor pass, format
* toc entry
* linkfix
* Edit pass for new features
* OTs
* escape length
* Writer/Editor review pass
* New beta web platform release notes
* Sort features and clean them up
* More formatting
* cont'd
* webrtc audiolevel
* cont'd
* cont'd
* browser bound keys
* Done with most content
* toc
* add todo's for clarif
* see also todos
* links
* Revert "links"
This reverts commit e456df6.
* addressed todos
* nits
* link
* fix date
* cap'z JS
* New beta web platform release notes
* Add TOC entry
* In progress rewrite and formatting
* Done with content changes
* detailed content
* escape code in link text
* Remove local network access as it's not shipping in 140
* Writer/Editor pass
* linkfix
* New beta web platform release notes
* toc, some cleanup
* technical editing of 141 items
* detailed content
* fix link
* finished writer/editor pass
* likely date
* Address comments
* Clarified syntax
---------
Co-authored-by: captainbrosset <[email protected]>
Co-authored-by: Michael S. Hoffman <[email protected]>
*[Speculation Rules API](https://developer.mozilla.org/docs/Web/API/Speculation_Rules_API) at MDN.
267
266
268
267
269
-
<!-- ---------- -->
270
-
###### Strict Same-origin policy for Storage Access API
271
-
272
-
The Storage Access API now follows the Same-origin policy.
273
-
274
-
By default, using `document.requestStorageAccess()` in a frame only attaches cookies to the requests that are made to the iframe's origin. The `CookiesAllowedForUrls` policy and storage access headers can still be used to unblock cross-site cookies.
275
-
276
-
See also:
277
-
*[Storage Access API](https://developer.mozilla.org/docs/Web/API/Storage_Access_API) at MDN.
*[Support `width` and `height` presentational attributes on nested `<svg>` elements](#support-width-and-height-presentational-attributes-on-nested-svg-elements)
*[Corner Shaping: the corner-shape property](https://drafts.csswg.org/css-borders-4/#corner-shaping) in _CSS Borders and Box Decorations Module Level 4_.
135
128
136
129
137
-
<!-- ---------- -->
138
-
###### Support `width` and `height` presentational attributes on nested `<svg>` elements
139
-
140
-
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.
141
-
142
-
With this feature, the following two HTML code snippets now produce the same output:
143
-
144
-
```html
145
-
<svgwidth="100px"height="100px">
146
-
<svgstyle="width:50px;height:50px;">
147
-
<circlecx="50px"cy="50px"r="40px"fill="green" />
148
-
</svg>
149
-
</svg>
150
-
```
151
-
152
-
```html
153
-
<svgwidth="100px"height="100px">
154
-
<svgwidth="50px"height="50px">
155
-
<circlecx="50px"cy="50px"r="40px"fill="green" />
156
-
</svg>
157
-
</svg>
158
-
```
159
-
160
-
In the second line:
161
-
* The first example uses a `style` attribute that contains width and height values.
162
-
* The second example uses separate `width` and `height` attributes.
163
-
164
-
See also:
165
-
*[`<svg>`](https://developer.mozilla.org/docs/Web/SVG/Reference/Element/svg) at MDN.
*[MS High Contrast Deprecation](#ms-high-contrast-deprecation)
51
-
*[AriaNotify API](#arianotify-api-1)
49
+
*[AriaNotify API](#arianotify-api)
52
50
*[Acquisition Info API](#acquisition-info-api)
53
51
54
52
@@ -66,7 +64,7 @@ See [What's New in DevTools (Microsoft Edge 140)](../../devtools/whats-new/2025/
66
64
67
65
See [Release Notes for the WebView2 SDK](../../webview2/release-notes/index.md).
68
66
<!-- todo: when exists in Sep 2025, use instead:
69
-
For WebView2, see [1.0.n.n](../../webview2/release-notes/index.md#10nnnnnn) in _Release Notes for the WebView2 SDK_ (Sep 2025).
67
+
See [1.0.n.n](../../webview2/release-notes/index.md#10nnnnnn) in _Release Notes for the WebView2 SDK_ (Sep 2025).
70
68
-->
71
69
72
70
@@ -276,15 +274,6 @@ See also:
276
274
#### Web APIs
277
275
278
276
279
-
<!-- ---------- -->
280
-
###### `ariaNotify()` API
281
-
282
-
The `ariaNotify()` API enables your app to directly tell a screen reader what to say when there's a non-user-initiated change in the content of a webpage. In the simplest scenario, you call `ariaNotify("foo")` on the document or on an element.
283
-
284
-
See also:
285
-
*[Creating a more accessible web with Aria Notify](https://blogs.windows.com/msedgedev/2025/05/05/creating-a-more-accessible-web-with-aria-notify/).
286
-
287
-
288
277
<!-- ---------- -->
289
278
###### `__Http-` and `__HostHttp-` cookie name prefixes
290
279
@@ -364,19 +353,6 @@ See also:
364
353
*[Blob](https://developer.mozilla.org/docs/Web/API/Blob) at MDN.
365
354
366
355
367
-
<!-- ---------- -->
368
-
###### `restrictOwnAudio` media track constraint
369
-
370
-
371
-
The new `restrictOwnAudio` media track constraint can help create cleaner screen recordings, such as when the capturing webpage itself is playing audio and you don't want that audio to be included in the capture, to avoid undesirable echo.
372
-
373
-
By default, when using `getDisplayMedia()` and when the system audio is captured, all audio that's played by the system is captured. If the `restrictOwnAudio` constraint is set, the captured system audio is filtered to exclude audio originating from the document that called `getDisplayMedia()`.
374
-
375
-
See also:
376
-
*[MediaDevices: getDisplayMedia() method](https://developer.mozilla.org/docs/Web/API/MediaDevices/getDisplayMedia) at MDN.
377
-
*[MediaTrackConstraints](https://developer.mozilla.org/docs/Web/API/MediaTrackConstraints) at MDN.
0 commit comments