⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280615 in webkit


Ignore:
Timestamp:
Aug 3, 2021, 1:54:19 PM (5 years ago)
Author:
Russell Epstein
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

Location:
branches/safari-612.1-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-612.1-branch/Source/WebCore/ChangeLog

    r280614 r280615  
     12021-08-03  Russell Epstein  <repstein@apple.com>
     2
     3        Cherry-pick r280591. rdar://problem/81471312
     4
     5    Update FirstWithDOMWindowReuseRestriction linked-on-or-after check to latest MacOS/iOS betas
     6    https://bugs.webkit.org/show_bug.cgi?id=228736
     7    <rdar://81419036>
     8   
     9    Reviewed by Chris Dumez.
     10   
     11    * platform/cocoa/VersionChecks.h:
     12    Delay enabling new behavior to MacOS 12 and iOS 15 SDK since new behavior is enabled for those OS versions.
     13   
     14   
     15    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280591 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     16
     17    2021-08-03  Youenn Fablet  <youenn@apple.com>
     18
     19            Update FirstWithDOMWindowReuseRestriction linked-on-or-after check to latest MacOS/iOS betas
     20            https://bugs.webkit.org/show_bug.cgi?id=228736
     21            <rdar://81419036>
     22
     23            Reviewed by Chris Dumez.
     24
     25            * platform/cocoa/VersionChecks.h:
     26            Delay enabling new behavior to MacOS 12 and iOS 15 SDK since new behavior is enabled for those OS versions.
     27
    1282021-08-03  Russell Epstein  <repstein@apple.com>
    229
  • branches/safari-612.1-branch/Source/WebCore/platform/cocoa/VersionChecks.h

    r280158 r280615  
    7070    FirstWithNullOriginForNonSpecialSchemedURLs = DYLD_IOS_VERSION_15_0,
    7171    FirstWithoutWeChatScrollingQuirk = DYLD_IOS_VERSION_14_5,
    72     FirstWithDOMWindowReuseRestriction  = DYLD_IOS_VERSION_14_5,
     72    FirstWithDOMWindowReuseRestriction  = DYLD_IOS_VERSION_15_0,
    7373    FirstWithSharedNetworkProcess = DYLD_IOS_VERSION_14_5,
    7474    FirstWithBlankViewOnJSPrompt = DYLD_IOS_VERSION_14_5,
     
    9595    FirstWithHTMLDocumentSupportedPropertyNames = DYLD_MACOSX_VERSION_11_3,
    9696    FirstWithNullOriginForNonSpecialSchemedURLs = DYLD_MACOSX_VERSION_12_00,
    97     FirstWithDOMWindowReuseRestriction = DYLD_MACOSX_VERSION_11_3,
     97    FirstWithDOMWindowReuseRestriction = DYLD_MACOSX_VERSION_12_00,
    9898    FirstWithBlankViewOnJSPrompt = DYLD_MACOSX_VERSION_11_3,
    9999    FirstWithoutClientCertificateLookup = DYLD_MACOSX_VERSION_11_3,
Note: See TracChangeset for help on using the changeset viewer.