Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WebKit] Implement Xcode 16.0 beta 1-6 changes. #21166

Merged
merged 16 commits into from
Sep 12, 2024
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
16 changes: 16 additions & 0 deletions src/webkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5635,6 +5635,10 @@ interface WKWebView
[NoiOS, NoMacCatalyst, Mac (14, 0)]
[Export ("stopLoading:")]
void StopLoading ([NullAllowed] NSObject sender);

[Mac (15, 0), NoiOS, MacCatalyst (18, 0)]
[Export ("writingToolsActive")]
bool WritingToolsActive { [Bind ("isWritingToolsActive")] get; }
}

/// <param name="result">The result of a successful evaluation. <see langword="null" /> if error occurred.</param>
Expand Down Expand Up @@ -5759,6 +5763,18 @@ interface WKWebViewConfiguration : NSCopying, NSSecureCoding {
[NoiOS, Mac (14, 0), NoMacCatalyst]
[Export ("userInterfaceDirectionPolicy", ArgumentSemantic.Assign)]
WKUserInterfaceDirectionPolicy UserInterfaceDirectionPolicy { get; set; }

[Mac (15, 0), NoiOS, MacCatalyst (18, 0)]
[Export ("supportsAdaptiveImageGlyph")]
bool SupportsAdaptiveImageGlyph { get; set; }

[Mac (15, 0), NoiOS, MacCatalyst (18, 0)]
[Export ("writingToolsBehavior")]
#if MONOMAC
NSWritingToolsBehavior WritingToolsBehavior { get; set; }
#else
UIWritingToolsBehavior WritingToolsBehavior { get; set; }
#endif
}

/// <summary>A pool of content processes.</summary>
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 @@ -79780,6 +79780,7 @@ P:WebKit.WKWebView.Inspectable
P:WebKit.WKWebView.IsLoading
P:WebKit.WKWebView.NavigationDelegate
P:WebKit.WKWebView.UIDelegate
P:WebKit.WKWebView.WritingToolsActive
P:WebKit.WKWindowFeatures.AllowsResizing
P:WebKit.WKWindowFeatures.Height
P:WebKit.WKWindowFeatures.MenuBarVisibility
Expand Down

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions tests/xtro-sharpie/macOS-WebKit.todo

This file was deleted.

Loading