Changeset 247191 in webkit


Ignore:
Timestamp:
Jul 5, 2019 10:37:36 PM (5 years ago)
Author:
youenn@apple.com
Message:

Carvana.com needs the fetch AbortSignal quirk
https://bugs.webkit.org/show_bug.cgi?id=199540

Reviewed by Chris Dumez.

Manually tested.

  • page/Quirks.cpp:

(WebCore::Quirks::shouldIgnoreInvalidSignal const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r247189 r247191  
     12019-07-05  Youenn Fablet  <youenn@apple.com>
     2
     3        Carvana.com needs the fetch AbortSignal quirk
     4        https://bugs.webkit.org/show_bug.cgi?id=199540
     5
     6        Reviewed by Chris Dumez.
     7
     8        Manually tested.
     9
     10        * page/Quirks.cpp:
     11        (WebCore::Quirks::shouldIgnoreInvalidSignal const):
     12
    1132019-07-05  Robin Morisset  <rmorisset@apple.com>
    214
  • trunk/Source/WebCore/page/Quirks.cpp

    r247172 r247191  
    9595
    9696    auto host = m_document->topDocument().url().host();
    97     return equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com") || equalLettersIgnoringASCIICase(host, "www.bnz.co.nz");
     97    return equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com")
     98        || equalLettersIgnoringASCIICase(host, "www.bnz.co.nz")
     99        || equalLettersIgnoringASCIICase(host, "www.carvana.com");
    98100}
    99101
Note: See TracChangeset for help on using the changeset viewer.