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

Changeset 244374 in webkit


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

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

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

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

    r244373 r244374  
    223223    if (equalLettersIgnoringASCIICase(host, "msn.com") || host.endsWithIgnoringASCIICase(".msn.com"))
    224224        return true;
     225    if (equalLettersIgnoringASCIICase(host, "flipkart.com") || host.endsWithIgnoringASCIICase(".flipkart.com"))
     226        return true;
    225227    if (equalLettersIgnoringASCIICase(host, "maps.google.com"))
    226228        return true;
Note: See TracChangeset for help on using the changeset viewer.