Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions microsoft-edge/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
href: ./web-platform/release-notes/index.md
displayName: what's new, announcements

- name: Microsoft Edge 136
href: ./web-platform/release-notes/136.md
displayName: Microsoft Edge 136 web platform release notes (May 2025) # page title

- name: Microsoft Edge 135
href: ./web-platform/release-notes/135.md
displayName: Microsoft Edge 135 web platform release notes (Apr. 2025) # page title
Expand Down
37 changes: 0 additions & 37 deletions microsoft-edge/web-platform/release-notes/135.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ To stay up-to-date and get the latest web platform features, download an Insider
* [CSS logical overflow properties](#css-logical-overflow-properties)
* [CSS `abs()` and `sign()` functions](#css-abs-and-sign-functions)
* [CSS anchor positioning: remembered scroll offset](#css-anchor-positioning-remembered-scroll-offset)
* [CSS `dynamic-range-limit` property](#css-dynamic-range-limit-property)
* [CSS `shape()` function](#css-shape-function)
* [CSS `progress()` functions](#css-progress-functions)
* [`safe-area-max-inset-*` variables](#safe-area-max-inset--variables)
Expand All @@ -37,7 +36,6 @@ To stay up-to-date and get the latest web platform features, download an Insider
* [Support for `rel` and `relList` attributes in SVG `<a>` elements](#support-for-rel-and-rellist-attributes-in-svg-a-elements)
* [Web APIs](#web-apis)
* [Add MediaStreamTrack support to the Web Speech API](#add-mediastreamtrack-support-to-the-web-speech-api)
* [Partitioning `:visited` links history](#partitioning-visited-links-history)
* [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)
* [Dispatching click events to captured pointer](#dispatching-click-events-to-captured-pointer)
* [Float16Array](#float16array)
Expand All @@ -47,11 +45,9 @@ To stay up-to-date and get the latest web platform features, download an Insider
* [Observable API](#observable-api)
* [Service worker client URL now ignores `history.pushState` changes](#service-worker-client-url-now-ignores-historypushstate-changes)
* [Timestamps for RTC Encoded Frames](#timestamps-for-rtc-encoded-frames)
* [Use the `double` type for ProgressEvent's `loaded` and `total` attributes](#use-the-double-type-for-progressevents-loaded-and-total-attributes)
* [fetchLater API](#fetchlater-api)
* [highlightsFromPoint API](#highlightsfrompoint-api)
* [Deprecated and removed features](#deprecated-and-removed-features)
* [Deprecate `Intl.Locale` getters](#deprecate-intllocale-getters)
* [Remove `navigator.xr.supportsSession` method](#remove-navigatorxrsupportssession-method)
* [Remove WebGPU limit `maxInterStageShaderComponents`](#remove-webgpu-limit-maxinterstageshadercomponents)
* [Origin trials](#origin-trials)
Expand Down Expand Up @@ -164,12 +160,6 @@ Taking the scroll offset into account when sizing the element enables using all
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.


<!-- ---------- -->
###### CSS `dynamic-range-limit` property

The `dynamic-range-limit` CSS property allows limiting the maximum brightness of High Dynamic Range (HDR) content.


<!-- ---------- -->
###### CSS `shape()` function

Expand Down Expand Up @@ -239,19 +229,6 @@ The Web Speech API is a web standard API that allows you to incorporate speech r
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.


<!-- ---------- -->
###### Partitioning `:visited` links history

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:
* Link URL.
* Top-level site.
* Frame origin.

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.

_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.


<!-- ---------- -->
###### Create service worker client and inherit service worker controller for iframe with `srcdoc`

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


<!-- ---------- -->
###### Use the `double` type for ProgressEvent's `loaded` and `total` attributes

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.


<!-- ---------- -->
###### fetchLater API

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


<!-- ---------- -->
###### Deprecate `Intl.Locale` getters

The `Intl.Locale` API exposes information such as week data and hour cycle type of a locale.

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.


<!-- ---------- -->
###### Remove `navigator.xr.supportsSession` method

Expand Down
Loading