Title: [209639] trunk/Source/WebKit2
Revision
209639
Author
simon.fra...@apple.com
Date
2016-12-09 17:24:59 -0800 (Fri, 09 Dec 2016)

Log Message

Fix initialization of contentUpdateFrequency
https://bugs.webkit.org/show_bug.cgi?id=165705
rdar://problem/29602039

Reviewed by Tim Horton.

The value that controls web content update frequency was not being initialized.

* UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
(-[WKWebViewConfiguration init]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (209638 => 209639)


--- trunk/Source/WebKit2/ChangeLog	2016-12-10 01:22:15 UTC (rev 209638)
+++ trunk/Source/WebKit2/ChangeLog	2016-12-10 01:24:59 UTC (rev 209639)
@@ -1,3 +1,16 @@
+2016-12-09  Simon Fraser  <simon.fra...@apple.com>
+
+        Fix initialization of contentUpdateFrequency
+        https://bugs.webkit.org/show_bug.cgi?id=165705
+        rdar://problem/29602039
+
+        Reviewed by Tim Horton.
+
+        The value that controls web content update frequency was not being initialized.
+
+        * UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
+        (-[WKWebViewConfiguration init]):
+
 2016-12-09  Anders Carlsson  <ander...@apple.com>
 
         Once we can send Mach messages again, make sure to send any pending outgoing messages

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (209638 => 209639)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm	2016-12-10 01:22:15 UTC (rev 209638)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm	2016-12-10 01:24:59 UTC (rev 209639)
@@ -149,6 +149,7 @@
     else
         _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeAll;
     _ignoresViewportScaleLimits = NO;
+    _contentUpdateFrequency = 60;
 #else
     _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone;
     _mediaDataLoadsAutomatically = YES;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to