Title: [287862] trunk/Source/WebCore
Revision
287862
Author
[email protected]
Date
2022-01-10 15:42:34 -0800 (Mon, 10 Jan 2022)

Log Message

hasBrokenEncryptedMediaAPISupportQuirk and needsPreloadAutoQuirk have overly permissive domain allow lists
https://bugs.webkit.org/show_bug.cgi?id=222130
<rdar://problem/74758560>

Unreviewed, fix typo introduced in r287855.


* page/Quirks.cpp:
(WebCore::Quirks::needsPreloadAutoQuirk const): "vimeo" should be "vimeo.com".

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (287861 => 287862)


--- trunk/Source/WebCore/ChangeLog	2022-01-10 23:17:01 UTC (rev 287861)
+++ trunk/Source/WebCore/ChangeLog	2022-01-10 23:42:34 UTC (rev 287862)
@@ -1,3 +1,14 @@
+2022-01-10  Eric Carlson  <[email protected]>
+
+        hasBrokenEncryptedMediaAPISupportQuirk and needsPreloadAutoQuirk have overly permissive domain allow lists
+        https://bugs.webkit.org/show_bug.cgi?id=222130
+        <rdar://problem/74758560>
+
+        Unreviewed, fix typo introduced in r287855.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::needsPreloadAutoQuirk const): "vimeo" should be "vimeo.com".
+
 2022-01-10  Wenson Hsieh  <[email protected]>
 
         Modal container observer should classify elements that are styled like clickable controls

Modified: trunk/Source/WebCore/page/Quirks.cpp (287861 => 287862)


--- trunk/Source/WebCore/page/Quirks.cpp	2022-01-10 23:17:01 UTC (rev 287861)
+++ trunk/Source/WebCore/page/Quirks.cpp	2022-01-10 23:42:34 UTC (rev 287862)
@@ -817,7 +817,7 @@
         return m_needsPreloadAutoQuirk.value();
 
     auto domain = RegistrableDomain(m_document->url()).string();
-    m_needsPreloadAutoQuirk = domain == "vimeo"_s;
+    m_needsPreloadAutoQuirk = domain == "vimeo.com"_s;
 
     return m_needsPreloadAutoQuirk.value();
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to