Title: [263269] trunk/Source/WebKit
Revision
263269
Author
commit-qu...@webkit.org
Date
2020-06-19 09:18:43 -0700 (Fri, 19 Jun 2020)

Log Message

Enable stale-while-revalidate support by default
https://bugs.webkit.org/show_bug.cgi?id=213286

Patch by Rob Buis <rb...@igalia.com> on 2020-06-19
Reviewed by Youenn Fablet.

Enable stale-while-revalidate support for Mac/GTK/WPE by changing the default
to true. Note that platforms that do not support speculative loads, which s-w-r
relies on, will not see any change in bahavior.

* UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (263268 => 263269)


--- trunk/Source/WebKit/ChangeLog	2020-06-19 15:39:55 UTC (rev 263268)
+++ trunk/Source/WebKit/ChangeLog	2020-06-19 16:18:43 UTC (rev 263269)
@@ -1,3 +1,16 @@
+2020-06-19  Rob Buis  <rb...@igalia.com>
+
+        Enable stale-while-revalidate support by default
+        https://bugs.webkit.org/show_bug.cgi?id=213286
+
+        Reviewed by Youenn Fablet.
+
+        Enable stale-while-revalidate support for Mac/GTK/WPE by changing the default
+        to true. Note that platforms that do not support speculative loads, which s-w-r
+        relies on, will not see any change in bahavior.
+
+        * UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h:
+
 2020-06-19  Alexander Mikhaylenko  <al...@gnome.org>
 
         REGRESSION(r253360): [GTK] Page starts loading during animation in back/forward gesture

Modified: trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h (263268 => 263269)


--- trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h	2020-06-19 15:39:55 UTC (rev 263268)
+++ trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h	2020-06-19 16:18:43 UTC (rev 263269)
@@ -180,7 +180,7 @@
 #else
     bool m_networkCacheSpeculativeValidationEnabled { false };
 #endif
-    bool m_staleWhileRevalidateEnabled { false };
+    bool m_staleWhileRevalidateEnabled { true };
     String m_localStorageDirectory;
     String m_mediaKeysStorageDirectory;
     String m_alternativeServicesDirectory;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to