Skip to content

WebKit macOS xcode16.0 b1

Rolf Bjarne Kvinge edited this page Sep 2, 2024 · 4 revisions

#WebKit.framework https://github.com/xamarin/xamarin-macios/pull/21166

diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/DOMElement.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/DOMElement.h --- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/DOMElement.h	2024-04-23 07:07:36 +++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/DOMElement.h	2024-05-30 09:55:09 @@ -81,8 +81,6 @@ - (void)blur WEBKIT_AVAILABLE_MAC(10_6); - (void)scrollIntoView:(BOOL)alignWithTop WEBKIT_AVAILABLE_MAC(10_5); - (void)scrollIntoViewIfNeeded:(BOOL)centerIfNeeded WEBKIT_AVAILABLE_MAC(10_5); -- (void)scrollByLines:(int)lines WEBKIT_AVAILABLE_MAC(10_5); -- (void)scrollByPages:(int)pages WEBKIT_AVAILABLE_MAC(10_5); - (DOMNodeList *)getElementsByClassName:(NSString *)name WEBKIT_AVAILABLE_MAC(10_6); - (void)webkitRequestFullScreen:(unsigned short)flags WEBKIT_AVAILABLE_MAC(10_6); - (DOMElement *)querySelector:(NSString *)selectors WEBKIT_AVAILABLE_MAC(10_6); @@ -97,4 +95,6 @@ - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI :(NSString *)localName WEBKIT_DEPRECATED_MAC(10_4, 10_5); - (DOMAttr *)getAttributeNodeNS:(NSString *)namespaceURI :(NSString *)localName WEBKIT_DEPRECATED_MAC(10_4, 10_5); - (BOOL)hasAttributeNS:(NSString *)namespaceURI :(NSString *)localName WEBKIT_DEPRECATED_MAC(10_4, 10_5); +- (void)scrollByLines:(int)lines WEBKIT_DEPRECATED_MAC(10_5, 10_14); +- (void)scrollByPages:(int)pages WEBKIT_DEPRECATED_MAC(10_5, 10_14); @end diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKBackForwardListItem.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKBackForwardListItem.h --- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKBackForwardListItem.h	2024-04-23 07:07:36 +++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKBackForwardListItem.h	2024-05-30 09:55:10 @@ -40,9 +40,9 @@ */ @property (readonly, copy) NSURL *URL; -/*! @abstract The title of the webpage represented by this item. +/*! @abstract Deprecated. Always returns nil. */ -@property (nullable, readonly, copy) NSString *title; +@property (nullable, readonly, copy) NSString *title API_DEPRECATED("No longer supported", macos(10.10, 15.0), ios(8.0, NA), visionos(1.0, NA)); /*! @abstract The URL of the initial request that created this item. */
Clone this wiki locally