WebKit Bugzilla
Attachment 373150 Details for
Bug 199331
: Need a way for SPI clients to know when to avoid resizing to accommodate for the input view bounds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199331-20190628144300.patch (text/plain), 1.62 KB, created by
Wenson Hsieh
on 2019-06-28 14:43:01 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Wenson Hsieh
Created:
2019-06-28 14:43:01 PDT
Size:
1.62 KB
patch
obsolete
>Subversion Revision: 246934 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 6a894ca4f4a881b29969f931e498506c769c7d0c..d7d0f0361614a42673719495c9b21452357896cf 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,16 @@ >+2019-06-28 Wenson Hsieh <wenson_hsieh@apple.com> >+ >+ Followup to r246931 >+ https://bugs.webkit.org/show_bug.cgi?id=199331 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Extend the site-specific quirk added in r246931 to *.sharepoint.com, so that it fixes Word for enterprise >+ customers as well. >+ >+ * page/Quirks.cpp: >+ (WebCore::Quirks::shouldAvoidResizingWhenInputViewBoundsChange const): >+ > 2019-06-28 Simon Fraser <simon.fraser@apple.com> > > REGRESSION (r239984): pages with custom scrollbars also show normal scrollbars >diff --git a/Source/WebCore/page/Quirks.cpp b/Source/WebCore/page/Quirks.cpp >index f02efe2267b0a95fc3ce9267d7688b619dc83e1e..93c404ecb907d2af8ba1b04cc5638bc4f4a07609 100644 >--- a/Source/WebCore/page/Quirks.cpp >+++ b/Source/WebCore/page/Quirks.cpp >@@ -304,7 +304,13 @@ bool Quirks::shouldAvoidResizingWhenInputViewBoundsChange() const > return false; > > auto host = m_document->topDocument().url().host(); >- return equalLettersIgnoringASCIICase(host, "live.com") || host.endsWithIgnoringASCIICase(".live.com"); >+ if (equalLettersIgnoringASCIICase(host, "live.com") || host.endsWithIgnoringASCIICase(".live.com")) >+ return true; >+ >+ if (host.endsWithIgnoringASCIICase(".sharepoint.com")) >+ return true; >+ >+ return false; > } > > bool Quirks::shouldDisablePointerEventsQuirk() 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 199331
:
373137
| 373150