WebKit Bugzilla
Attachment 368266 Details for
Bug 197292
: Disable ContentChangeObserver on iOSMac
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197292-20190425140327.patch (text/plain), 1.47 KB, created by
Timothy Hatcher
on 2019-04-25 14:03:28 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Timothy Hatcher
Created:
2019-04-25 14:03:28 PDT
Size:
1.47 KB
patch
obsolete
>Subversion Revision: 244602 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 6e9bbe17d2bd5747253c5d924d52be6104df65f9..32d574491653d2549185180a5d6408b2aeedb616 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,17 @@ >+2019-04-25 Timothy Hatcher <timothy@apple.com> >+ >+ Disable ContentChangeObserver on iOSMac. >+ https://bugs.webkit.org/show_bug.cgi?id=197292 >+ rdar://problem/49039957 >+ >+ Reviewed by Zalan Bujtas. >+ >+ We donât need to run any of ContentChangeObserver, because we have hover events on iOSMac. >+ Disabling it skips the synthetic mouse move events and speeds up clicks. >+ >+ * page/SettingsBase.cpp: >+ (WebCore::SettingsBase::defaultContentChangeObserverEnabled): Return false for PLATFORM(IOSMAC). >+ > 2019-04-24 Simon Fraser <simon.fraser@apple.com> > > Make it possible to control the renderTreeAsText output by setting options on testRunner >diff --git a/Source/WebCore/page/SettingsBase.cpp b/Source/WebCore/page/SettingsBase.cpp >index 3d59d30195a2d2d91b9daa4612cde6ae05e2962c..a3533e910eb3583057c2129f8a9c3ed2559122cb 100644 >--- a/Source/WebCore/page/SettingsBase.cpp >+++ b/Source/WebCore/page/SettingsBase.cpp >@@ -109,7 +109,7 @@ bool SettingsBase::defaultDownloadableBinaryFontsEnabled() > > bool SettingsBase::defaultContentChangeObserverEnabled() > { >-#if PLATFORM(IOS_FAMILY) >+#if PLATFORM(IOS_FAMILY) && !PLATFORM(IOSMAC) > return true; > #else > return false;
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 197292
:
368264
| 368266