Changeset 242822 in webkit


Ignore:
Timestamp:
Mar 12, 2019 1:17:26 PM (5 years ago)
Author:
Kocsen Chung
Message:

Apply patch. rdar://problem/48795264

Location:
branches/safari-607.1.40.0-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607.1.40.0-branch/Source/WebCore/ChangeLog

    r242781 r242822  
     12019-03-12  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Apply patch. rdar://problem/48795264
     4
     5    2019-03-12  Jer Noble  <jer.noble@apple.com>
     6
     7            REGRESSION(r236281): YouTube Movies fail with "video format" error
     8            https://bugs.webkit.org/show_bug.cgi?id=195598
     9            <rdar://problem/48782842>
     10
     11            Reviewed by Eric Carlson.
     12
     13            Enable just this quirk by default on iOS, where quirks in general aren't enabled.
     14
     15            * page/Quirks.cpp:
     16            (WebCore::Quirks::hasBrokenEncryptedMediaAPISupportQuirk const):
     17
    1182019-03-11  Kocsen Chung  <kocsen_chung@apple.com>
    219
  • branches/safari-607.1.40.0-branch/Source/WebCore/page/Quirks.cpp

    r242781 r242822  
    4141bool Quirks::hasBrokenEncryptedMediaAPISupportQuirk() const
    4242{
    43     if (!m_document || !m_document->settings().needsSiteSpecificQuirks())
     43    if (!m_document)
    4444        return false;
     45
     46#if !PLATFORM(IOS)
     47    if (!m_document->settings().needsSiteSpecificQuirks())
     48        return false;
     49 #endif
    4550
    4651    if (m_hasBrokenEncryptedMediaAPISupportQuirk)
Note: See TracChangeset for help on using the changeset viewer.