Title: [242822] branches/safari-607.1.40.0-branch/Source/WebCore
Revision
242822
Author
[email protected]
Date
2019-03-12 13:17:26 -0700 (Tue, 12 Mar 2019)

Log Message

Apply patch. rdar://problem/48795264

Modified Paths


Diff

Modified: branches/safari-607.1.40.0-branch/Source/WebCore/ChangeLog (242821 => 242822)


--- branches/safari-607.1.40.0-branch/Source/WebCore/ChangeLog	2019-03-12 20:10:32 UTC (rev 242821)
+++ branches/safari-607.1.40.0-branch/Source/WebCore/ChangeLog	2019-03-12 20:17:26 UTC (rev 242822)
@@ -1,3 +1,20 @@
+2019-03-12  Kocsen Chung  <[email protected]>
+
+        Apply patch. rdar://problem/48795264
+
+    2019-03-12  Jer Noble  <[email protected]>
+
+            REGRESSION(r236281): YouTube Movies fail with "video format" error
+            https://bugs.webkit.org/show_bug.cgi?id=195598
+            <rdar://problem/48782842>
+
+            Reviewed by Eric Carlson.
+
+            Enable just this quirk by default on iOS, where quirks in general aren't enabled.
+
+            * page/Quirks.cpp:
+            (WebCore::Quirks::hasBrokenEncryptedMediaAPISupportQuirk const):
+
 2019-03-11  Kocsen Chung  <[email protected]>
 
         Cherry-pick r242770. rdar://problem/48795264

Modified: branches/safari-607.1.40.0-branch/Source/WebCore/page/Quirks.cpp (242821 => 242822)


--- branches/safari-607.1.40.0-branch/Source/WebCore/page/Quirks.cpp	2019-03-12 20:10:32 UTC (rev 242821)
+++ branches/safari-607.1.40.0-branch/Source/WebCore/page/Quirks.cpp	2019-03-12 20:17:26 UTC (rev 242822)
@@ -40,9 +40,14 @@
 
 bool Quirks::hasBrokenEncryptedMediaAPISupportQuirk() const
 {
-    if (!m_document || !m_document->settings().needsSiteSpecificQuirks())
+    if (!m_document)
         return false;
 
+#if !PLATFORM(IOS)
+    if (!m_document->settings().needsSiteSpecificQuirks())
+        return false;
+ #endif
+
     if (m_hasBrokenEncryptedMediaAPISupportQuirk)
         return m_hasBrokenEncryptedMediaAPISupportQuirk.value();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to