Changeset 247172 in webkit


Ignore:
Timestamp:
Jul 5, 2019 1:13:08 PM (5 years ago)
Author:
youenn@apple.com
Message:

Add fetch quirk for www.bnz.co.nz
https://bugs.webkit.org/show_bug.cgi?id=199518
rdar://problem/52230914

Reviewed by Chris Dumez.

Use fetch quirk to make bnz main page load properly.
Manually tested.

  • page/Quirks.cpp:

(WebCore::Quirks::shouldIgnoreInvalidSignal const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r247171 r247172  
     12019-07-05  Youenn Fablet  <youenn@apple.com>
     2
     3        Add fetch quirk for www.bnz.co.nz
     4        https://bugs.webkit.org/show_bug.cgi?id=199518
     5        rdar://problem/52230914
     6
     7        Reviewed by Chris Dumez.
     8
     9        Use fetch quirk to make bnz main page load properly.
     10        Manually tested.
     11
     12        * page/Quirks.cpp:
     13        (WebCore::Quirks::shouldIgnoreInvalidSignal const):
     14
    1152019-07-05  Robin Morisset  <rmorisset@apple.com>
    216
  • trunk/Source/WebCore/page/Quirks.cpp

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