Skip to content

Commit 9c2f033

Browse files
Merge pull request #3421 from MicrosoftDocs/main
Main to live - 4/3/25
2 parents b2b5d07 + d87eb56 commit 9c2f033

File tree

5 files changed

+500
-47
lines changed

5 files changed

+500
-47
lines changed

microsoft-edge/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
href: ./web-platform/release-notes/index.md
3131
displayName: what's new, announcements
3232

33+
- name: Microsoft Edge 136
34+
href: ./web-platform/release-notes/136.md
35+
displayName: Microsoft Edge 136 web platform release notes (May 2025) # page title
36+
3337
- name: Microsoft Edge 135
3438
href: ./web-platform/release-notes/135.md
3539
displayName: Microsoft Edge 135 web platform release notes (Apr. 2025) # page title

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

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ To stay up-to-date and get the latest web platform features, download an Insider
2727
* [CSS logical overflow properties](#css-logical-overflow-properties)
2828
* [CSS `abs()` and `sign()` functions](#css-abs-and-sign-functions)
2929
* [CSS anchor positioning: remembered scroll offset](#css-anchor-positioning-remembered-scroll-offset)
30-
* [CSS `dynamic-range-limit` property](#css-dynamic-range-limit-property)
3130
* [CSS `shape()` function](#css-shape-function)
3231
* [CSS `progress()` functions](#css-progress-functions)
3332
* [`safe-area-max-inset-*` variables](#safe-area-max-inset--variables)
@@ -37,7 +36,6 @@ To stay up-to-date and get the latest web platform features, download an Insider
3736
* [Support for `rel` and `relList` attributes in SVG `<a>` elements](#support-for-rel-and-rellist-attributes-in-svg-a-elements)
3837
* [Web APIs](#web-apis)
3938
* [Add MediaStreamTrack support to the Web Speech API](#add-mediastreamtrack-support-to-the-web-speech-api)
40-
* [Partitioning `:visited` links history](#partitioning-visited-links-history)
4139
* [Create service worker client and inherit service worker controller for iframe with `srcdoc`](#create-service-worker-client-and-inherit-service-worker-controller-for-iframe-with-srcdoc)
4240
* [Dispatching click events to captured pointer](#dispatching-click-events-to-captured-pointer)
4341
* [Float16Array](#float16array)
@@ -47,11 +45,9 @@ To stay up-to-date and get the latest web platform features, download an Insider
4745
* [Observable API](#observable-api)
4846
* [Service worker client URL now ignores `history.pushState` changes](#service-worker-client-url-now-ignores-historypushstate-changes)
4947
* [Timestamps for RTC Encoded Frames](#timestamps-for-rtc-encoded-frames)
50-
* [Use the `double` type for ProgressEvent's `loaded` and `total` attributes](#use-the-double-type-for-progressevents-loaded-and-total-attributes)
5148
* [fetchLater API](#fetchlater-api)
5249
* [highlightsFromPoint API](#highlightsfrompoint-api)
5350
* [Deprecated and removed features](#deprecated-and-removed-features)
54-
* [Deprecate `Intl.Locale` getters](#deprecate-intllocale-getters)
5551
* [Remove `navigator.xr.supportsSession` method](#remove-navigatorxrsupportssession-method)
5652
* [Remove WebGPU limit `maxInterStageShaderComponents`](#remove-webgpu-limit-maxinterstageshadercomponents)
5753
* [Origin trials](#origin-trials)
@@ -164,12 +160,6 @@ Taking the scroll offset into account when sizing the element enables using all
164160
In order to avoid resizing the element every time the document is scrolled, the "remembered scroll offset" concept is used, rather than always using the current scroll offset.
165161

166162

167-
<!-- ---------- -->
168-
###### CSS `dynamic-range-limit` property
169-
170-
The `dynamic-range-limit` CSS property allows limiting the maximum brightness of High Dynamic Range (HDR) content.
171-
172-
173163
<!-- ---------- -->
174164
###### CSS `shape()` function
175165

@@ -239,19 +229,6 @@ The Web Speech API is a web standard API that allows you to incorporate speech r
239229
The Web Speech API uses the user's default microphone as the default audio input. MediaStreamTrack support allows a website to use the Web Speech API to caption other sources of audio, including remote audio tracks.
240230

241231

242-
<!-- ---------- -->
243-
###### Partitioning `:visited` links history
244-
245-
To eliminate user browsing history leaks, HTML `<a>` elements are now styled as `:visited` only if they have been clicked from the top-level site and frame origin before. This means that Microsoft Edge now partitions visited links according to three keys:
246-
* Link URL.
247-
* Top-level site.
248-
* Frame origin.
249-
250-
By only styling links that have been clicked on this site and frame before, side-channel attacks that have been developed to obtain `:visited` links styling information are now obsolete.
251-
252-
_Self-links_ are excluded from this; links to a site's own pages can be styled as `:visited` even if they have not been clicked on in this exact top-level site and frame origin before. This exemption is only enabled in top-level frames or subframes which are same-origin with the top-level frame.
253-
254-
255232
<!-- ---------- -->
256233
###### Create service worker client and inherit service worker controller for iframe with `srcdoc`
257234

@@ -330,12 +307,6 @@ These timestamps are present in WebRTC-encoded frames that are transmitted via `
330307
This change allows video conferencing applications which use WebRTC to implement latency measurements to better understand performance.
331308

332309

333-
<!-- ---------- -->
334-
###### Use the `double` type for ProgressEvent's `loaded` and `total` attributes
335-
336-
The `loaded` and `total` attributes of a `ProgressEvent` indicate the current progress. The type of these attributes is now a floating point number between `0` and `1`, which aligns `ProgressEvent` with the default behavior of the `<progress>` HTML element, when the `max` attribute is omitted.
337-
338-
339310
<!-- ---------- -->
340311
###### fetchLater API
341312

@@ -363,14 +334,6 @@ Getting highlights from a point can be used by a web app to manage user interact
363334
#### Deprecated and removed features
364335

365336

366-
<!-- ---------- -->
367-
###### Deprecate `Intl.Locale` getters
368-
369-
The `Intl.Locale` API exposes information such as week data and hour cycle type of a locale.
370-
371-
The accessor properties of the `Intl.Locale` object are now deprecated, in favor of the corresponding functions, per the specification. For example, the `Intl.Locale.prototype.hourCycle` accessor property is deprecated in favor of the `Intl.Locale.prototype.getHourCycles()` function.
372-
373-
374337
<!-- ---------- -->
375338
###### Remove `navigator.xr.supportsSession` method
376339

0 commit comments

Comments
 (0)