Changeset 276176 in webkit
- Timestamp:
- Apr 16, 2021, 3:50:31 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/WTF/ChangeLog (modified) (1 diff)
-
Source/WTF/wtf/PlatformEnableCocoa.h (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r276164 r276176 1 2021-04-16 Kate Cheney <katherine_cheney@apple.com> 2 3 Disable app-bound request API tests on specific OS versions 4 https://bugs.webkit.org/show_bug.cgi?id=223692 5 <rdar://problem/75787288> 6 7 Reviewed by Brent Fulgham. 8 9 * wtf/PlatformEnableCocoa.h: 10 1 11 2021-04-16 Alex Christensen <achristensen@webkit.org> 2 12 -
trunk/Source/WTF/wtf/PlatformEnableCocoa.h
r275929 r276176 658 658 #define ENABLE_NOTIFY_FILTERING 1 659 659 #endif 660 661 #if !defined(ENABLE_APP_BOUND_REQUESTS) \ 662 && ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000) \ 663 || ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000))) 664 #define ENABLE_APP_BOUND_REQUESTS 1 665 #endif -
trunk/Tools/ChangeLog
r276164 r276176 1 2021-04-16 Kate Cheney <katherine_cheney@apple.com> 2 3 Disable app-bound request API tests on specific OS versions 4 https://bugs.webkit.org/show_bug.cgi?id=223692 5 <rdar://problem/75787288> 6 7 Reviewed by Brent Fulgham. 8 9 These test rely on internal additions only available on certain OS 10 versions. We should disable them on other versions. 11 12 * TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm: 13 1 14 2021-04-16 Alex Christensen <achristensen@webkit.org> 2 15 -
trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm
r275952 r276176 1421 1421 #endif // ENABLE(APP_BOUND_DOMAINS) 1422 1422 1423 #if USE(APPLE_INTERNAL_SDK) 1423 #if USE(APPLE_INTERNAL_SDK) && ENABLE(APP_BOUND_REQUESTS) 1424 1424 TEST(InAppBrowserPrivacy, AppBoundRequest) 1425 1425 {
Note:
See TracChangeset
for help on using the changeset viewer.