Title: [244374] trunk/Source/WebCore
Revision
244374
Author
[email protected]
Date
2019-04-17 00:33:51 -0700 (Wed, 17 Apr 2019)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (244373 => 244374)


--- trunk/Source/WebCore/ChangeLog	2019-04-17 07:30:27 UTC (rev 244373)
+++ trunk/Source/WebCore/ChangeLog	2019-04-17 07:33:51 UTC (rev 244374)
@@ -1,5 +1,16 @@
 2019-04-16  Antoine Quint  <[email protected]>
 
+        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):
+
+2019-04-16  Antoine Quint  <[email protected]>
+
         Opt MSN.com into simulated mouse events dispatch quirk
         https://bugs.webkit.org/show_bug.cgi?id=196960
         <rdar://problem/49403260>

Modified: trunk/Source/WebCore/page/Quirks.cpp (244373 => 244374)


--- trunk/Source/WebCore/page/Quirks.cpp	2019-04-17 07:30:27 UTC (rev 244373)
+++ trunk/Source/WebCore/page/Quirks.cpp	2019-04-17 07:33:51 UTC (rev 244374)
@@ -222,6 +222,8 @@
         return true;
     if (equalLettersIgnoringASCIICase(host, "msn.com") || host.endsWithIgnoringASCIICase(".msn.com"))
         return true;
+    if (equalLettersIgnoringASCIICase(host, "flipkart.com") || host.endsWithIgnoringASCIICase(".flipkart.com"))
+        return true;
     if (equalLettersIgnoringASCIICase(host, "maps.google.com"))
         return true;
     if (equalLettersIgnoringASCIICase(host, "trailers.apple.com"))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to