Title: [248079] trunk/Source/WebCore
Revision
248079
Author
[email protected]
Date
2019-07-31 15:58:01 -0700 (Wed, 31 Jul 2019)

Log Message

[iPadOS] Enable simulated mouse events on iqiyi.com to fix the video controls
https://bugs.webkit.org/show_bug.cgi?id=200322
rdar://problem/53235709

Reviewed by Wenson Hsieh.

iqiyi.com needs to get mouseMove events for dragging the video scrubber to work.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (248078 => 248079)


--- trunk/Source/WebCore/ChangeLog	2019-07-31 22:37:00 UTC (rev 248078)
+++ trunk/Source/WebCore/ChangeLog	2019-07-31 22:58:01 UTC (rev 248079)
@@ -379,6 +379,19 @@
         (WebCore::Quirks::shouldLightenJapaneseBoldSansSerif const):
         * page/Quirks.h:
 
+2019-07-31  Simon Fraser  <[email protected]>
+
+        [iPadOS] Enable simulated mouse events on iqiyi.com to fix the video controls
+        https://bugs.webkit.org/show_bug.cgi?id=200322
+        rdar://problem/53235709
+
+        Reviewed by Wenson Hsieh.
+        
+        iqiyi.com needs to get mouseMove events for dragging the video scrubber to work.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):
+
 2019-07-30  Michael Catanzaro  <[email protected]>
 
         Unreviewed, fix GTK build after SoupNetworkSession ownership rework.

Modified: trunk/Source/WebCore/page/Quirks.cpp (248078 => 248079)


--- trunk/Source/WebCore/page/Quirks.cpp	2019-07-31 22:37:00 UTC (rev 248078)
+++ trunk/Source/WebCore/page/Quirks.cpp	2019-07-31 22:58:01 UTC (rev 248079)
@@ -287,6 +287,8 @@
         return true;
     if (equalLettersIgnoringASCIICase(host, "flipkart.com") || host.endsWithIgnoringASCIICase(".flipkart.com"))
         return true;
+    if (equalLettersIgnoringASCIICase(host, "iqiyi.com") || host.endsWithIgnoringASCIICase(".iqiyi.com"))
+        return true;
     if (equalLettersIgnoringASCIICase(host, "trailers.apple.com"))
         return true;
     if (equalLettersIgnoringASCIICase(host, "soundcloud.com"))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to