Changeset 235000 in webkit


Ignore:
Timestamp:
Aug 17, 2018 5:09:32 PM (6 years ago)
Author:
Brent Fulgham
Message:

Remove Adobe SSO exception now that StorageAccess API is available
https://bugs.webkit.org/show_bug.cgi?id=188710
<rdar://problem/35056707>

Reviewed by Alex Christensen.

Remove custom quirk now that proper API exists to allow the same functions.

  • loader/ResourceLoadObserver.cpp:

(WebCore::ResourceLoadObserver::logSubresourceLoading): Remove unneeded quirk.
(WebCore::resourceNeedsSSOQuirk): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r234999 r235000  
     12018-08-17  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Remove Adobe SSO exception now that StorageAccess API is available
     4        https://bugs.webkit.org/show_bug.cgi?id=188710
     5        <rdar://problem/35056707>
     6
     7        Reviewed by Alex Christensen.
     8
     9        Remove custom quirk now that proper API exists to allow the same functions.
     10
     11        * loader/ResourceLoadObserver.cpp:
     12        (WebCore::ResourceLoadObserver::logSubresourceLoading): Remove unneeded quirk.
     13        (WebCore::resourceNeedsSSOQuirk): Deleted.
     14
    1152018-08-17  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebCore/loader/ResourceLoadObserver.cpp

    r232814 r235000  
    105105}
    106106
    107 // FIXME: This quirk was added to address <rdar://problem/33325881> and should be removed once content is fixed.
    108 static bool resourceNeedsSSOQuirk(Page* page, const URL& url)
    109 {
    110     if (!shouldEnableSiteSpecificQuirks(page))
    111         return false;
    112 
    113     return equalIgnoringASCIICase(url.host(), "sp.auth.adobe.com");
    114 }
    115 
    116107void ResourceLoadObserver::logSubresourceLoading(const Frame* frame, const ResourceRequest& newRequest, const ResourceResponse& redirectResponse)
    117108{
     
    138129   
    139130    if (areDomainsAssociated(page, targetPrimaryDomain, mainFramePrimaryDomain) || (isRedirect && areDomainsAssociated(page, targetPrimaryDomain, sourcePrimaryDomain)))
    140         return;
    141 
    142     if (resourceNeedsSSOQuirk(page, targetURL))
    143131        return;
    144132
Note: See TracChangeset for help on using the changeset viewer.