Skip to content

Commit

Permalink
Remove Quirk shouldDispatchSimulatedMouseEvents for msn.com
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=255269
rdar://107844725

Reviewed by Brent Fulgham.

After deactivating the Quirk, the videos on msn.com website can be
scrubbed. The quirk can be removed.

* Source/WebCore/page/Quirks.cpp:
(WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):

Canonical link: https://commits.webkit.org/266866@main
  • Loading branch information
karlcow authored and Brent Fulgham committed Aug 14, 2023
1 parent 1d66fa7 commit a2b2983
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Source/WebCore/page/Quirks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ bool Quirks::isGoogleMaps() const

// rdar://49124313
// desmos.com rdar://47068176
// msn.com rdar://49403260
// flipkart.com rdar://49648520
// soundcloud.com rdar://52915981
// naver.com rdar://48068610
Expand Down Expand Up @@ -411,8 +410,6 @@ bool Quirks::shouldDispatchSimulatedMouseEvents(const EventTarget* target) const
return ShouldDispatchSimulatedMouseEvents::Yes;
if (host == "airtable.com"_s || host.endsWith(".airtable.com"_s))
return ShouldDispatchSimulatedMouseEvents::Yes;
if (host == "msn.com"_s || host.endsWith(".msn.com"_s))
return ShouldDispatchSimulatedMouseEvents::Yes;
if (host == "flipkart.com"_s || host.endsWith(".flipkart.com"_s))
return ShouldDispatchSimulatedMouseEvents::Yes;
if (host == "trailers.apple.com"_s)
Expand Down

0 comments on commit a2b2983

Please sign in to comment.