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
*[Track navigation history for nested iframes (FrameCreatedEvent API)](../release-notes/index.md#track-navigation-history-for-nested-iframes-framecreatedevent-api) in _Release Notes for the WebView2 SDK_.
2616
+
*[Track navigation history for nested iframes (FrameCreatedEvent API)](../release-notes/archive.md#track-navigation-history-for-nested-iframes-framecreatedevent-api) in _Archived Release Notes for the WebView2 SDK_.
Copy file name to clipboardExpand all lines: microsoft-edge/webview2/release-notes/archive.md
+125-1Lines changed: 125 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,137 @@ ms.author: msedgedevrel
6
6
ms.topic: conceptual
7
7
ms.service: microsoft-edge
8
8
ms.subservice: devtools
9
-
ms.date: 10/07/2025
9
+
ms.date: 11/03/2025
10
10
---
11
11
# Archived Release Notes for the WebView2 SDK
12
12
13
13
These Release Notes provide information about added features and bug fixes that are included in the WebView2 Release SDK and the WebView2 Prerelease SDK, for older releases.
[NuGet package for WebView2 SDK 1.0.3240.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3240.44)
23
+
24
+
For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 136.0.3240.44 or higher.
25
+
26
+
27
+
<!-- ------------------------------ -->
28
+
#### Promotions
29
+
30
+
The following APIs have been promoted to Stable and are now included in this Release SDK.
31
+
32
+
33
+
<!-- ---------- -->
34
+
###### Track navigation history for nested iframes (FrameCreatedEvent API)
35
+
36
+
The FrameCreatedEvent API supports nested iframes, such as recording the navigation history for a second-level iframe. Without this API, WebView2 only tracks first-level iframes, which are the direct child iframes of the main frame. Using this API, your app can subscribe to the nested iframe creation event, giving the app access to all properties, methods, and events of `CoreWebView2Frame` for the nested iframe.
37
+
38
+
Use this API to manage iframe tracking on a page that contains multiple levels of iframes. You can choose to track any of the following:
39
+
40
+
* Only the main page and first-level iframes (the default behavior).
41
+
* A partial WebView2 frames tree with specific iframes of interest.
* [ICoreWebView2FrameChildFrameCreatedEventHandler](/microsoft-edge/webview2/reference/win32/icorewebview2framechildframecreatedeventhandler?view=webview2-1.0.3240.44&preserve-view=true)<!-- win32 only -->
61
+
62
+
---
63
+
64
+
65
+
<!-- ------------------------------ -->
66
+
#### Bug fixes
67
+
68
+
69
+
<!-- ---------- -->
70
+
###### Runtime-only
71
+
72
+
* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196))
73
+
* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps.
[NuGet package for WebView2 SDK 1.0.3296-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296-prerelease)
85
+
86
+
For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or higher.
87
+
88
+
89
+
<!-- ------------------------------ -->
90
+
#### Experimental APIs
91
+
92
+
No Experimental APIs have been added in this Prerelease SDK.
93
+
94
+
95
+
<!-- ------------------------------ -->
96
+
#### Promotions
97
+
98
+
The following APIs have been promoted from Experimental to Stable in this Prerelease SDK.
99
+
100
+
101
+
<!-- ---------- -->
102
+
###### Set default background color on WebView2 initialization (DefaultBackgroundColor API)
103
+
104
+
The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process.
* Fixed the **Find** bar no longer appearing after the window is shifted.
133
+
* Fixed a bug where the app wasn't able to cancel navigation to login pages via the `NavigationStarting` event.
134
+
* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196))
135
+
* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps.
[NuGet package for WebView2 SDK 1.0.3240.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3240.44)
1111
-
1112
-
For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 136.0.3240.44 or higher.
1113
-
1114
-
1115
-
<!-- ------------------------------ -->
1116
-
#### Promotions
1117
-
1118
-
The following APIs have been promoted to Stable and are now included in this Release SDK.
1119
-
1120
-
1121
-
<!-- ---------- -->
1122
-
###### Track navigation history for nested iframes (FrameCreatedEvent API)
1123
-
1124
-
The FrameCreatedEvent API supports nested iframes, such as recording the navigation history for a second-level iframe. Without this API, WebView2 only tracks first-level iframes, which are the direct child iframes of the main frame. Using this API, your app can subscribe to the nested iframe creation event, giving the app access to all properties, methods, and events of `CoreWebView2Frame` for the nested iframe.
1125
-
1126
-
Use this API to manage iframe tracking on a page that contains multiple levels of iframes. You can choose to track any of the following:
1127
-
1128
-
* Only the main page and first-level iframes (the default behavior).
1129
-
* A partial WebView2 frames tree with specific iframes of interest.
*[ICoreWebView2FrameChildFrameCreatedEventHandler](/microsoft-edge/webview2/reference/win32/icorewebview2framechildframecreatedeventhandler?view=webview2-1.0.3240.44&preserve-view=true)<!-- win32 only -->
1149
-
1150
-
---
1151
-
1152
-
1153
-
<!-- ------------------------------ -->
1154
-
#### Bug fixes
1155
-
1156
-
1157
-
<!-- ---------- -->
1158
-
###### Runtime-only
1159
-
1160
-
* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196))
1161
-
* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps.
[NuGet package for WebView2 SDK 1.0.3296-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296-prerelease)
1173
-
1174
-
For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or higher.
1175
-
1176
-
1177
-
<!-- ------------------------------ -->
1178
-
#### Experimental APIs
1179
-
1180
-
No Experimental APIs have been added in this Prerelease SDK.
1181
-
1182
-
1183
-
<!-- ------------------------------ -->
1184
-
#### Promotions
1185
-
1186
-
The following APIs have been promoted from Experimental to Stable in this Prerelease SDK.
1187
-
1188
-
1189
-
<!-- ---------- -->
1190
-
###### Set default background color on WebView2 initialization (DefaultBackgroundColor API)
1191
-
1192
-
The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process.
* Fixed the **Find** bar no longer appearing after the window is shifted.
1221
-
* Fixed a bug where the app wasn't able to cancel navigation to login pages via the `NavigationStarting` event.
1222
-
* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196))
1223
-
* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps.
0 commit comments