Changeset 242822 in webkit
- Timestamp:
- Mar 12, 2019, 1:17:26 PM (6 years ago)
- 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 1 2019-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 1 18 2019-03-11 Kocsen Chung <kocsen_chung@apple.com> 2 19 -
branches/safari-607.1.40.0-branch/Source/WebCore/page/Quirks.cpp
r242781 r242822 41 41 bool Quirks::hasBrokenEncryptedMediaAPISupportQuirk() const 42 42 { 43 if (!m_document || !m_document->settings().needsSiteSpecificQuirks())43 if (!m_document) 44 44 return false; 45 46 #if !PLATFORM(IOS) 47 if (!m_document->settings().needsSiteSpecificQuirks()) 48 return false; 49 #endif 45 50 46 51 if (m_hasBrokenEncryptedMediaAPISupportQuirk)
Note:
See TracChangeset
for help on using the changeset viewer.