Title: [246319] trunk/Source/WebCore
- Revision
- 246319
- Author
- [email protected]
- Date
- 2019-06-11 09:26:29 -0700 (Tue, 11 Jun 2019)
Log Message
Add a quirk for washingtonpost.com and nytimes.com
https://bugs.webkit.org/show_bug.cgi?id=198678
Reviewed by Geoffrey Garen.
Covered by manual test.
* page/Quirks.cpp:
(WebCore::Quirks::hasWebSQLSupportQuirk const):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (246318 => 246319)
--- trunk/Source/WebCore/ChangeLog 2019-06-11 16:19:36 UTC (rev 246318)
+++ trunk/Source/WebCore/ChangeLog 2019-06-11 16:26:29 UTC (rev 246319)
@@ -1,3 +1,15 @@
+2019-06-11 Sihui Liu <[email protected]>
+
+ Add a quirk for washingtonpost.com and nytimes.com
+ https://bugs.webkit.org/show_bug.cgi?id=198678
+
+ Reviewed by Geoffrey Garen.
+
+ Covered by manual test.
+
+ * page/Quirks.cpp:
+ (WebCore::Quirks::hasWebSQLSupportQuirk const):
+
2019-06-11 Devin Rousso <[email protected]>
Include `touch-action` in the computed styles list
Modified: trunk/Source/WebCore/page/Quirks.cpp (246318 => 246319)
--- trunk/Source/WebCore/page/Quirks.cpp 2019-06-11 16:19:36 UTC (rev 246318)
+++ trunk/Source/WebCore/page/Quirks.cpp 2019-06-11 16:26:29 UTC (rev 246319)
@@ -182,7 +182,11 @@
m_hasWebSQLSupportQuirk = domain == "bostonglobe.com"
|| domain.endsWith(".bostonglobe.com")
|| domain == "latimes.com"
- || domain.endsWith(".latimes.com");
+ || domain.endsWith(".latimes.com")
+ || domain == "washingtonpost.com"
+ || domain.endsWith(".washingtonpost.com")
+ || domain == "nytimes.com"
+ || domain.endsWith(".nytimes.com");
return m_hasWebSQLSupportQuirk.value();
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes