Changeset 248079 in webkit


Ignore:
Timestamp:
Jul 31, 2019, 3:58:01 PM (6 years ago)
Author:
Simon Fraser
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r248078 r248079  
    379379        (WebCore::Quirks::shouldLightenJapaneseBoldSansSerif const):
    380380        * page/Quirks.h:
     381
     3822019-07-31  Simon Fraser  <simon.fraser@apple.com>
     383
     384        [iPadOS] Enable simulated mouse events on iqiyi.com to fix the video controls
     385        https://bugs.webkit.org/show_bug.cgi?id=200322
     386        rdar://problem/53235709
     387
     388        Reviewed by Wenson Hsieh.
     389       
     390        iqiyi.com needs to get mouseMove events for dragging the video scrubber to work.
     391
     392        * page/Quirks.cpp:
     393        (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):
    381394
    3823952019-07-30  Michael Catanzaro  <mcatanzaro@igalia.com>
  • trunk/Source/WebCore/page/Quirks.cpp

    r248018 r248079  
    288288    if (equalLettersIgnoringASCIICase(host, "flipkart.com") || host.endsWithIgnoringASCIICase(".flipkart.com"))
    289289        return true;
     290    if (equalLettersIgnoringASCIICase(host, "iqiyi.com") || host.endsWithIgnoringASCIICase(".iqiyi.com"))
     291        return true;
    290292    if (equalLettersIgnoringASCIICase(host, "trailers.apple.com"))
    291293        return true;
Note: See TracChangeset for help on using the changeset viewer.