Title: [280615] branches/safari-612.1-branch/Source/WebCore
Revision
280615
Author
repst...@apple.com
Date
2021-08-03 13:54:19 -0700 (Tue, 03 Aug 2021)

Log Message

Cherry-pick r280591. rdar://problem/81471312

    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.

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280591 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-612.1-branch/Source/WebCore/ChangeLog (280614 => 280615)


--- branches/safari-612.1-branch/Source/WebCore/ChangeLog	2021-08-03 20:54:17 UTC (rev 280614)
+++ branches/safari-612.1-branch/Source/WebCore/ChangeLog	2021-08-03 20:54:19 UTC (rev 280615)
@@ -1,5 +1,32 @@
 2021-08-03  Russell Epstein  <repst...@apple.com>
 
+        Cherry-pick r280591. rdar://problem/81471312
+
+    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.
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280591 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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  Russell Epstein  <repst...@apple.com>
+
         Cherry-pick r280589. rdar://problem/81471336
 
     REGRESSION (r280531): multiple modern-media-controls tests have become flaky timeouts

Modified: branches/safari-612.1-branch/Source/WebCore/platform/cocoa/VersionChecks.h (280614 => 280615)


--- branches/safari-612.1-branch/Source/WebCore/platform/cocoa/VersionChecks.h	2021-08-03 20:54:17 UTC (rev 280614)
+++ branches/safari-612.1-branch/Source/WebCore/platform/cocoa/VersionChecks.h	2021-08-03 20:54:19 UTC (rev 280615)
@@ -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