WebKit Bugzilla
Attachment 369264 Details for
Bug 197652
: Mouse event simulation should be limited to the graphing calculator on Desmos.com
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197652-20190507114557.patch (text/plain), 1.62 KB, created by
Antoine Quint
on 2019-05-07 02:45:58 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Antoine Quint
Created:
2019-05-07 02:45:58 PDT
Size:
1.62 KB
patch
obsolete
>Subversion Revision: 245001 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 0424c9ec70e9c0a56068721f57896aeb2774aa97..d2440ad56c5f3347a4690147dc9ec02bd6b1cfe2 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,14 @@ >+2019-05-07 Antoine Quint <graouts@apple.com> >+ >+ Mouse event simulation should be limited to the graphing calculator on Desmos.com >+ https://bugs.webkit.org/show_bug.cgi?id=197652 >+ <rdar://problem/47068176> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * page/Quirks.cpp: >+ (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const): >+ > 2019-05-06 James Savage <james.savage@apple.com> > > Improve coordination for creating UIWindow instances. >diff --git a/Source/WebCore/page/Quirks.cpp b/Source/WebCore/page/Quirks.cpp >index 162bf95d54004b1a00cec10dc91274ea21ce8a79..b1f1ffdb5ae4011c0a96f1f19c92b4e2e9cbfe94 100644 >--- a/Source/WebCore/page/Quirks.cpp >+++ b/Source/WebCore/page/Quirks.cpp >@@ -262,7 +262,7 @@ bool Quirks::shouldDispatchSimulatedMouseEvents() const > return true; > if (equalLettersIgnoringASCIICase(host, "wix.com") || host.endsWithIgnoringASCIICase(".wix.com")) > return true; >- if (equalLettersIgnoringASCIICase(host, "desmos.com") || host.endsWithIgnoringASCIICase(".desmos.com")) >+ if ((equalLettersIgnoringASCIICase(host, "desmos.com") || host.endsWithIgnoringASCIICase(".desmos.com")) && url.path().startsWithIgnoringASCIICase("/calculator/")) > return true; > if (equalLettersIgnoringASCIICase(host, "figma.com") || host.endsWithIgnoringASCIICase(".figma.com")) > return true;
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
Flags:
koivisto
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197652
: 369264