Title: [227873] trunk/Source/WebKit
Revision
227873
Author
[email protected]
Date
2018-01-30 21:15:59 -0800 (Tue, 30 Jan 2018)

Log Message

REGRESSION(r227550): Resource timing API is disabled on macOS
https://bugs.webkit.org/show_bug.cgi?id=182318

Reviewed by Chris Dumez.

Resource timing API should be enabled by default all versions of macOS we support now.

* Shared/WebPreferences.yaml:
* Shared/WebPreferencesDefaultValues.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (227872 => 227873)


--- trunk/Source/WebKit/ChangeLog	2018-01-31 04:47:43 UTC (rev 227872)
+++ trunk/Source/WebKit/ChangeLog	2018-01-31 05:15:59 UTC (rev 227873)
@@ -1,3 +1,15 @@
+2018-01-30  Ryosuke Niwa  <[email protected]>
+
+        REGRESSION(r227550): Resource timing API is disabled on macOS
+        https://bugs.webkit.org/show_bug.cgi?id=182318
+
+        Reviewed by Chris Dumez.
+
+        Resource timing API should be enabled by default all versions of macOS we support now.
+
+        * Shared/WebPreferences.yaml:
+        * Shared/WebPreferencesDefaultValues.h:
+
 2018-01-30  Tim Horton  <[email protected]>
 
         WKWebView layout is sometimes wrong after rotation on iPhone X

Modified: trunk/Source/WebKit/Shared/WebPreferences.yaml (227872 => 227873)


--- trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-01-31 04:47:43 UTC (rev 227872)
+++ trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-01-31 05:15:59 UTC (rev 227873)
@@ -716,7 +716,7 @@
 
 ResourceTimingEnabled:
   type: bool
-  defaultValue: DEFAULT_RESOURCE_TIMING_ENABLED
+  defaultValue: true
   humanReadableName: "Resource Timing"
   humanReadableDescription: "Enable ResourceTiming API"
   webcoreBinding: RuntimeEnabledFeatures

Modified: trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h (227872 => 227873)


--- trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h	2018-01-31 04:47:43 UTC (rev 227872)
+++ trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h	2018-01-31 05:15:59 UTC (rev 227873)
@@ -129,12 +129,6 @@
 #define DEFAULT_MODERN_MEDIA_CONTROLS_ENABLED false
 #endif
 
-#if PLATFORM(MAC)
-#define DEFAULT_RESOURCE_TIMING_ENABLED false
-#else
-#define DEFAULT_RESOURCE_TIMING_ENABLED true
-#endif
-
 #if PLATFORM(COCOA)
 #define DEFAULT_DATA_TRANSFER_ITEMS_ENABLED true
 #define DEFAULT_DIRECTORY_UPLOAD_ENABLED true
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to