Changeset 242249 in webkit


Ignore:
Timestamp:
Feb 28, 2019 6:10:22 PM (5 years ago)
Author:
beidson@apple.com
Message:

Followup to:
Universal links from Google search results pages don't open the app
https://bugs.webkit.org/show_bug.cgi?id=195126

Unreviewed.

  • page/SecurityOrigin.cpp:

(WebCore::originsMatch): Remove a bogus assertion (reasoning in bugzilla)

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r242248 r242249  
     12019-02-28  Brady Eidson  <beidson@apple.com>
     2
     3        Followup to:
     4        Universal links from Google search results pages don't open the app
     5        https://bugs.webkit.org/show_bug.cgi?id=195126
     6
     7        Unreviewed.
     8
     9        * page/SecurityOrigin.cpp:
     10        (WebCore::originsMatch): Remove a bogus assertion (reasoning in bugzilla)
     11
    1122019-02-28  Simon Fraser  <simon.fraser@apple.com>
    213
  • trunk/Source/WebCore/page/SecurityOrigin.cpp

    r240437 r242249  
    495495        return true;
    496496
    497     bool result = areOriginsMatching(origin1, origin2);
    498     ASSERT(result == (origin1.toString() == origin2.toString()));
    499     return result;
     497    return areOriginsMatching(origin1, origin2);
    500498}
    501499
Note: See TracChangeset for help on using the changeset viewer.