WebKit Bugzilla
Attachment 373499 Details for
Bug 199518
: Add fetch quirk for www.bnz.co.nz
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199518-20190705090624.patch (text/plain), 1.46 KB, created by
youenn fablet
on 2019-07-05 09:06:25 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
youenn fablet
Created:
2019-07-05 09:06:25 PDT
Size:
1.46 KB
patch
obsolete
>Subversion Revision: 247073 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index b19d2d393eca66f05eb8b36a4a14af06cea30446..b4cb62fc54feca1472fd6cbb652a8b0dcf87d0c7 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,17 @@ >+2019-07-05 Youenn Fablet <youenn@apple.com> >+ >+ Add fetch quirk for www.bnz.co.nz >+ https://bugs.webkit.org/show_bug.cgi?id=199518 >+ rdar://problem/52230914 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Use fetch quirk to make bnz main page load properly. >+ Manually tested. >+ >+ * page/Quirks.cpp: >+ (WebCore::Quirks::shouldIgnoreInvalidSignal const): >+ > 2019-07-03 Youenn Fablet <youenn@apple.com> > > Strengthen updating/removing of registrations from the database >diff --git a/Source/WebCore/page/Quirks.cpp b/Source/WebCore/page/Quirks.cpp >index 93c404ecb907d2af8ba1b04cc5638bc4f4a07609..46ff467366a6aa35c65c2bcef6a421804d47c6c4 100644 >--- a/Source/WebCore/page/Quirks.cpp >+++ b/Source/WebCore/page/Quirks.cpp >@@ -94,7 +94,10 @@ bool Quirks::shouldIgnoreInvalidSignal() const > return false; > > auto host = m_document->topDocument().url().host(); >- return equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com"); >+ if (equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com")) >+ return true; >+ >+ return equalLettersIgnoringASCIICase(host, "www.bnz.co.nz"); > } > > bool Quirks::needsFormControlToBeMouseFocusable() const
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199518
:
373499
|
373526