Title: [280591] trunk/Source/WebCore
Revision
280591
Author
you...@apple.com
Date
2021-08-03 08:33:53 -0700 (Tue, 03 Aug 2021)

Log Message

Update FirstWithDOMWindowReuseRestriction linked-on-or-after check to latest MacOS/iOS betas
https://bugs.webkit.org/show_bug.cgi?id=228736
<rdar://81419036>

Reviewed by Chris Dumez.

* platform/cocoa/VersionChecks.h:
Delay enabling new behavior to MacOS 12 and iOS 15 SDK since new behavior is enabled for those OS versions.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (280590 => 280591)


--- trunk/Source/WebCore/ChangeLog	2021-08-03 13:26:20 UTC (rev 280590)
+++ trunk/Source/WebCore/ChangeLog	2021-08-03 15:33:53 UTC (rev 280591)
@@ -1,3 +1,14 @@
+2021-08-03  Youenn Fablet  <you...@apple.com>
+
+        Update FirstWithDOMWindowReuseRestriction linked-on-or-after check to latest MacOS/iOS betas
+        https://bugs.webkit.org/show_bug.cgi?id=228736
+        <rdar://81419036>
+
+        Reviewed by Chris Dumez.
+
+        * platform/cocoa/VersionChecks.h:
+        Delay enabling new behavior to MacOS 12 and iOS 15 SDK since new behavior is enabled for those OS versions.
+
 2021-08-03  Jer Noble  <jer.no...@apple.com>
 
         REGRESSION (r280531): multiple modern-media-controls tests have become flaky timeouts

Modified: trunk/Source/WebCore/platform/cocoa/VersionChecks.h (280590 => 280591)


--- trunk/Source/WebCore/platform/cocoa/VersionChecks.h	2021-08-03 13:26:20 UTC (rev 280590)
+++ trunk/Source/WebCore/platform/cocoa/VersionChecks.h	2021-08-03 15:33:53 UTC (rev 280591)
@@ -69,7 +69,7 @@
     FirstThatObservesClassProperty = DYLD_IOS_VERSION_14_5,
     FirstWithNullOriginForNonSpecialSchemedURLs = DYLD_IOS_VERSION_15_0,
     FirstWithoutWeChatScrollingQuirk = DYLD_IOS_VERSION_14_5,
-    FirstWithDOMWindowReuseRestriction  = DYLD_IOS_VERSION_14_5,
+    FirstWithDOMWindowReuseRestriction  = DYLD_IOS_VERSION_15_0,
     FirstWithSharedNetworkProcess = DYLD_IOS_VERSION_14_5,
     FirstWithBlankViewOnJSPrompt = DYLD_IOS_VERSION_14_5,
     FirstWithApplicationCacheDisabledByDefault = DYLD_IOS_VERSION_15_0,
@@ -94,7 +94,7 @@
     FirstWithDataURLFragmentRemoval = DYLD_MACOSX_VERSION_11_3,
     FirstWithHTMLDocumentSupportedPropertyNames = DYLD_MACOSX_VERSION_11_3,
     FirstWithNullOriginForNonSpecialSchemedURLs = DYLD_MACOSX_VERSION_12_00,
-    FirstWithDOMWindowReuseRestriction = DYLD_MACOSX_VERSION_11_3,
+    FirstWithDOMWindowReuseRestriction = DYLD_MACOSX_VERSION_12_00,
     FirstWithBlankViewOnJSPrompt = DYLD_MACOSX_VERSION_11_3,
     FirstWithoutClientCertificateLookup = DYLD_MACOSX_VERSION_11_3,
     FirstWithApplicationCacheDisabledByDefault = DYLD_MACOSX_VERSION_12_00,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to