⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244373 in webkit


Ignore:
Timestamp:
Apr 17, 2019, 12:30:27 AM (7 years ago)
Author:
graouts@webkit.org
Message:

Opt MSN.com into simulated mouse events dispatch quirk
https://bugs.webkit.org/show_bug.cgi?id=196960
<rdar://problem/49403260>

Reviewed by Dean Jackson.

  • page/Quirks.cpp:

(WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r244372 r244373  
     12019-04-16  Antoine Quint  <graouts@apple.com>
     2
     3        Opt MSN.com into simulated mouse events dispatch quirk
     4        https://bugs.webkit.org/show_bug.cgi?id=196960
     5        <rdar://problem/49403260>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * page/Quirks.cpp:
     10        (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):
     11
    1122019-04-16  Zan Dobersek  <zdobersek@igalia.com>
    213
  • trunk/Source/WebCore/page/Quirks.cpp

    r244240 r244373  
    221221    if (equalLettersIgnoringASCIICase(host, "airtable.com") || host.endsWithIgnoringASCIICase(".airtable.com"))
    222222        return true;
     223    if (equalLettersIgnoringASCIICase(host, "msn.com") || host.endsWithIgnoringASCIICase(".msn.com"))
     224        return true;
    223225    if (equalLettersIgnoringASCIICase(host, "maps.google.com"))
    224226        return true;
Note: See TracChangeset for help on using the changeset viewer.