Title: [242526] trunk/Source/WebCore
Revision
242526
Author
sihui_...@apple.com
Date
2019-03-05 17:50:54 -0800 (Tue, 05 Mar 2019)

Log Message

Fix a typo in Web SQL quirk
https://bugs.webkit.org/show_bug.cgi?id=195338

Reviewed by Geoffrey Garen.

* page/Quirks.cpp:
(WebCore::Quirks::hasWebSQLSupportQuirk const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242525 => 242526)


--- trunk/Source/WebCore/ChangeLog	2019-03-06 01:13:06 UTC (rev 242525)
+++ trunk/Source/WebCore/ChangeLog	2019-03-06 01:50:54 UTC (rev 242526)
@@ -1,3 +1,13 @@
+2019-03-05  Sihui Liu  <sihui_...@apple.com>
+
+        Fix a typo in Web SQL quirk
+        https://bugs.webkit.org/show_bug.cgi?id=195338
+
+        Reviewed by Geoffrey Garen.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::hasWebSQLSupportQuirk const):
+
 2019-03-05  Daniel Bates  <daba...@apple.com>
 
         [iOS] Should not scroll when checkbox, radio, submit, reset, or button is spacebar activated

Modified: trunk/Source/WebCore/page/Quirks.cpp (242525 => 242526)


--- trunk/Source/WebCore/page/Quirks.cpp	2019-03-06 01:13:06 UTC (rev 242525)
+++ trunk/Source/WebCore/page/Quirks.cpp	2019-03-06 01:50:54 UTC (rev 242526)
@@ -66,8 +66,8 @@
     
     auto domain = m_document->securityOrigin().domain().convertToASCIILowercase();
     
-    m_hasWebSQLSupportQuirk = domain == "bostongloble.com"
-    || domain.endsWith(".bostongloble.com")
+    m_hasWebSQLSupportQuirk = domain == "bostonglobe.com"
+    || domain.endsWith(".bostonglobe.com")
     || domain == "latimes.com"
     || domain.endsWith(".latimes.com");
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to