Title: [259313] trunk/Source/WebCore
Revision
259313
Author
commit-qu...@webkit.org
Date
2020-03-31 14:29:12 -0700 (Tue, 31 Mar 2020)

Log Message

[iPadOS] Unable to scrub videos on nba.com
https://bugs.webkit.org/show_bug.cgi?id=209829
<rdar://problem/58804360>

Patch by Antoine Quint <grao...@apple.com> on 2020-03-31
Reviewed by Dean Jackson.

Opt nba.com into the simulated mouse events dispatch quirk.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (259312 => 259313)


--- trunk/Source/WebCore/ChangeLog	2020-03-31 21:25:09 UTC (rev 259312)
+++ trunk/Source/WebCore/ChangeLog	2020-03-31 21:29:12 UTC (rev 259313)
@@ -1,3 +1,16 @@
+2020-03-31  Antoine Quint  <grao...@apple.com>
+
+        [iPadOS] Unable to scrub videos on nba.com
+        https://bugs.webkit.org/show_bug.cgi?id=209829
+        <rdar://problem/58804360>
+
+        Reviewed by Dean Jackson.
+
+        Opt nba.com into the simulated mouse events dispatch quirk.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):
+
 2020-03-31  Rob Buis  <rb...@igalia.com>
 
         Append Upgrade-Insecure-Requests header in CachedResourceLoader

Modified: trunk/Source/WebCore/page/Quirks.cpp (259312 => 259313)


--- trunk/Source/WebCore/page/Quirks.cpp	2020-03-31 21:25:09 UTC (rev 259312)
+++ trunk/Source/WebCore/page/Quirks.cpp	2020-03-31 21:29:12 UTC (rev 259313)
@@ -332,6 +332,8 @@
             return true;
         if (host == "nhl.com" || host.endsWith(".nhl.com"))
             return true;
+        if (host == "nba.com" || host.endsWith(".nba.com"))
+            return true;
         if (host.endsWith(".naver.com")) {
             // Disable the quirk for tv.naver.com subdomain to be able to simulate hover on videos.
             if (host == "tv.naver.com")
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to