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

Changeset 280591 in webkit


Ignore:
Timestamp:
Aug 3, 2021, 8:33:53 AM (5 years ago)
Author:
youenn@apple.com
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r280589 r280591  
     12021-08-03  Youenn Fablet  <youenn@apple.com>
     2
     3        Update FirstWithDOMWindowReuseRestriction linked-on-or-after check to latest MacOS/iOS betas
     4        https://bugs.webkit.org/show_bug.cgi?id=228736
     5        <rdar://81419036>
     6
     7        Reviewed by Chris Dumez.
     8
     9        * platform/cocoa/VersionChecks.h:
     10        Delay enabling new behavior to MacOS 12 and iOS 15 SDK since new behavior is enabled for those OS versions.
     11
    1122021-08-03  Jer Noble  <jer.noble@apple.com>
    213
  • trunk/Source/WebCore/platform/cocoa/VersionChecks.h

    r280158 r280591  
    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.