Skip to content

Commit 399efe5

Browse files
Merge pull request #3398 from MicrosoftDocs/web-platform-release-notes
Edge 135 web platform release notes
2 parents 301744f + e7d029b commit 399efe5

6 files changed

Lines changed: 501 additions & 12 deletions

File tree

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 135
34+
href: ./web-platform/release-notes/135.md
35+
displayName: Microsoft Edge 135 web platform release notes (Apr. 2025) # page title
36+
3337
- name: Microsoft Edge 134
3438
href: ./web-platform/release-notes/134.md
3539
displayName: Microsoft Edge 134 web platform release notes (Mar. 2025) # page title

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ To stay up-to-date and get the latest web platform features, download an Insider
5858
<!-- ====================================================================== -->
5959
## Edge DevTools
6060

61-
For Edge DevTools, see [What's New in DevTools (Microsoft Edge 133)](../../devtools-guide-chromium/whats-new/2025/02/devtools-133.md).
61+
See [What's New in DevTools (Microsoft Edge 133)](../../devtools-guide-chromium/whats-new/2025/02/devtools-133.md).
6262

6363

6464
<!-- ====================================================================== -->
6565
## WebView2
6666

67-
For WebView2, see [Release Notes for the WebView2 SDK](../../webview2/release-notes/index.md).
67+
See [1.0.3065.39](../../webview2/release-notes/index.md#10306539) in _Release Notes for the WebView2 SDK_ (Feb. 2025).
6868

6969

7070
<!-- ====================================================================== -->
@@ -341,7 +341,7 @@ Allows Microsoft Store-installed Progressive Web Apps (PWAs) to access file cont
341341

342342
Expires on June 14, 2025.
343343

344-
Granular per-document and per-element control over which content should allow or disallow handwriting input.
344+
The `handwriting` attribute provides a per-document and per-element way to control where handwriting input, such as when using a stylus, is allowed.
345345

346346
* [Explainer](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/Handwriting/explainer.md)
347347
* [Feedback](https://github.com/MicrosoftEdge/MSEdgeExplainers/issues/new?labels=Handwriting,OriginTrialFeedback&amp;title=%5BHandwriting%5D+Feedback)

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

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,20 @@ To stay up-to-date and get the latest web platform features, download an Insider
4040
* [Web App `LocalFolder` Access](#web-app-localfolder-access)
4141
* [HTML+IDL handwriting attribute](#htmlidl-handwriting-attribute)
4242
* [Acquisition Info API](#acquisition-info-api)
43+
* [New Chromium origin trials](#new-chromium-origin-trials)
44+
* [SelectParserRelaxation](#selectparserrelaxation)
4345

4446

4547
<!-- ====================================================================== -->
4648
## Edge DevTools
4749

48-
For Edge DevTools, see [What's New in Microsoft Edge DevTools](../../devtools-guide-chromium/whats-new/whats-new.md).
50+
See [What's New in DevTools (Microsoft Edge 134)](../../devtools-guide-chromium/whats-new/2025/03/devtools-134.md).
4951

5052

5153
<!-- ====================================================================== -->
5254
## WebView2
5355

54-
For WebView2, see [Release Notes for the WebView2 SDK](../../webview2/release-notes/index.md).
56+
See [1.0.3124.44](../../webview2/release-notes/index.md#10312444) in _Release Notes for the WebView2 SDK_ (March 2025).
5557

5658

5759
<!-- ====================================================================== -->
@@ -91,7 +93,7 @@ Using this property, webpages that display HDR images can limit their brightness
9193
<!-- ---------- -->
9294
###### Customizable `<select>` element
9395

94-
The customizable `<select>` element allows developers to take complete control of the rendering of the element, by adding the `appearance: base-select` CSS declaration.
96+
The customizable `<select>` element allows you to take complete control of the rendering of the element, by adding the `appearance: base-select` CSS declaration.
9597

9698
This feature currently relies on the `SelectParserRelaxation` flag, which changes the HTML parser to allow more tags within the `<select>` tag. Sites which include additional tags inside `<select>` which were getting removed before, such as `<span>` elements, or are including an extremely large number of `<option>` elements may be affected by `SelectParserRelaxation`.
9799

@@ -113,7 +115,7 @@ A new `closedby` attribute controls the behavior:
113115
<!-- ---------- -->
114116
###### `application-title` meta tag for installed web apps
115117

116-
The `<meta name="application-title">` element allows developers of installed web applications to set the text that appears in the title bar of the installed application window. By default, if the `application-title` meta name is missing, the text that's contained in the HTML `<title>` element is used instead.
118+
The `<meta name="application-title">` element allows an installed web application to set the text that appears in the title bar of the installed application window. By default, if the `application-title` meta name is missing, the text that's contained in the HTML `<title>` element is used instead.
117119

118120
See [Other names](https://developer.mozilla.org/docs/Web/HTML/Element/meta/name#other_names), in _Standard metadata names_, at MDN.
119121

@@ -134,7 +136,7 @@ The `expect-no-linked-resources` Document-Policy hints to the browser that the b
134136
<!-- ---------- -->
135137
###### Explicit resource management
136138

137-
This feature introduces the `using` keyword to JavaScript, which allows developers to explicitly manage resources. The `using` keyword is used to define a block of code that uses a resource, and ensures that the resource is disposed of when the block is exited. This feature addresses a common pattern in software development regarding the lifetime and management of various resources (such as memory or I/O). This pattern supports resource allocation and explicitly releasing critical resources.
139+
This feature introduces the `using` keyword to JavaScript, which allows you to explicitly manage resources. The `using` keyword is used to define a block of code that uses a resource, and ensures that the resource is disposed of when the block is exited. This feature addresses a common pattern in software development regarding the lifetime and management of various resources (such as memory or I/O). This pattern supports resource allocation and explicitly releasing critical resources.
138140

139141
See [ECMAScript Explicit Resource Management](https://github.com/tc39/proposal-explicit-resource-management).
140142

@@ -251,7 +253,7 @@ Allows Microsoft Store-installed Progressive Web Apps (PWAs) to access file cont
251253

252254
Expires on June 14, 2025.
253255

254-
Granular per-document and per-element control over which content should allow or disallow handwriting input.
256+
The `handwriting` attribute provides a per-document and per-element way to control where handwriting input, such as when using a stylus, is allowed.
255257

256258
* [Explainer](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/Handwriting/explainer.md)
257259
* [Feedback](https://github.com/MicrosoftEdge/MSEdgeExplainers/issues/new?labels=Handwriting,OriginTrialFeedback&amp;title=%5BHandwriting%5D+Feedback)
@@ -270,6 +272,22 @@ Supports 3P acquisition attribution for Progressive Web Apps (PWAs) that were ac
270272
* [Register](https://developer.microsoft.com/microsoft-edge/origin-trials/trials/4013a45f-3f48-4341-81ea-1bc13bf90c83)
271273

272274

275+
<!-- ------------------------------ -->
276+
#### New Chromium origin trials
277+
278+
279+
<!-- ---------- -->
280+
###### SelectParserRelaxation
281+
282+
Expires on November 11, 2025.
283+
284+
This is a deprecation origin trial, which re-enables the old parser behavior for parsing `<select>` tags. Under that old behavior, non-supported content is silently discarded and not included in the DOM content underneath the `<select>`. This trial can be used in case the new behavior that's described in [Customizable `<select>` element](#customizable-select-element) (above) breaks a site.
285+
286+
* [Explainer](https://chromestatus.com/feature/5145948356083712)
287+
* [Feedback](https://crbug.com/new)
288+
* [Register](https://developer.chrome.com/origintrials/#/register_trial/182958734861926401)
289+
290+
273291
<!-- ====================================================================== -->
274292
> [!NOTE]
275293
> Portions of this page are modifications based on work created and shared by Chromium.org and used according to terms described in the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0).

0 commit comments

Comments
 (0)