Changeset 235078 in webkit


Ignore:
Timestamp:
Aug 20, 2018 7:08:47 AM (6 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r235036 - Unreviewed. Fix GTK/WPE cookie API tests after r234396.

  • UIProcess/WebsiteData/WebsiteDataRecord.cpp:

(WebKit::WebsiteDataRecord::displayNameForCookieHostName): Bring back the check to handle localhost as an
special case for non cocoa ports.

Location:
releases/WebKitGTK/webkit-2.22/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.22/Source/WebKit/ChangeLog

    r235066 r235078  
     12018-08-20  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK/WPE cookie API tests after r234396.
     4
     5        * UIProcess/WebsiteData/WebsiteDataRecord.cpp:
     6        (WebKit::WebsiteDataRecord::displayNameForCookieHostName): Bring back the check to handle localhost as an
     7        special case for non cocoa ports.
     8
    192018-08-17  Tim Horton  <timothy_horton@apple.com>
    210
  • releases/WebKitGTK/webkit-2.22/Source/WebKit/UIProcess/WebsiteData/WebsiteDataRecord.cpp

    r234396 r235078  
    4747    if (hostName == String(kCFHTTPCookieLocalFileDomain))
    4848        return displayNameForLocalFiles();
     49#else
     50    if (hostName == "localhost")
     51        return hostName;
    4952#endif
    5053    return displayNameForHostName(hostName);
Note: See TracChangeset for help on using the changeset viewer.