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
12 changes: 12 additions & 0 deletions src/webkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5290,6 +5290,10 @@ interface WKNavigationAction {
[MacCatalyst (14, 5)]
[Export ("shouldPerformDownload")]
bool ShouldPerformDownload { get; }

[iOS (26, 0), Mac (26, 0), MacCatalyst (26, 0)]
[Export ("isContentRuleListRedirect")]
bool IsContentRuleListRedirect { get; }
}

/// <summary>Delegate object for <see cref="WebKit.WKNavigation" /> objects, provides methods relating to navigation and load policies.</summary>
Expand Down Expand Up @@ -6666,6 +6670,9 @@ interface WKWebView
interface WKWebViewConfiguration : NSCopying, NSSecureCoding {

[Export ("processPool", ArgumentSemantic.Retain)]
[Deprecated (PlatformName.iOS, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
[Deprecated (PlatformName.MacOSX, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
[Deprecated (PlatformName.MacCatalyst, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
WKProcessPool ProcessPool { get; set; }

[Export ("preferences", ArgumentSemantic.Retain)]
Expand Down Expand Up @@ -6711,6 +6718,8 @@ interface WKWebViewConfiguration : NSCopying, NSSecureCoding {

[NoMac]
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.iOS, 26, 0, message: "No longer supported.")]
[Deprecated (PlatformName.MacCatalyst, 26, 0, message: "No longer supported.")]
[Export ("selectionGranularity")]
WKSelectionGranularity SelectionGranularity { get; set; }

Expand Down Expand Up @@ -6797,6 +6806,9 @@ interface WKWebViewConfiguration : NSCopying, NSSecureCoding {
///
/// <related type="externalDocumentation" href="https://developer.apple.com/library/ios/documentation/WebKit/Reference/WKProcessPool_Ref/index.html">Apple documentation for <c>WKProcessPool</c></related>
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.iOS, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
[Deprecated (PlatformName.MacOSX, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
[Deprecated (PlatformName.MacCatalyst, 26, 0, message: "Use 'WKWebsiteDataStore' instead. Creating multiple instances of 'WKProcessPool' no longer works.")]
[BaseType (typeof (NSObject))]
interface WKProcessPool : NSSecureCoding {
// as of Mac 10.10, iOS 8.0 Beta 2,
Expand Down
1 change: 1 addition & 0 deletions tests/cecil-tests/Documentation.KnownFailures.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24496,6 +24496,7 @@ P:WebKit.WebViewToolBarsEventArgs.Visible
P:WebKit.WKDownload.Delegate
P:WebKit.WKDownload.Progress
P:WebKit.WKDownload.UserInitiated
P:WebKit.WKNavigationAction.IsContentRuleListRedirect
P:WebKit.WKPreferences.ElementFullscreenEnabled
P:WebKit.WKPreferences.FraudulentWebsiteWarningEnabled
P:WebKit.WKPreferences.SiteSpecificQuirksModeEnabled
Expand Down

This file was deleted.

6 changes: 0 additions & 6 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-WebKit.todo

This file was deleted.

4 changes: 0 additions & 4 deletions tests/xtro-sharpie/api-annotations-dotnet/macOS-WebKit.todo

This file was deleted.

Loading