Title: [204705] trunk/Source
Revision
204705
Author
commit-qu...@webkit.org
Date
2016-08-22 02:53:47 -0700 (Mon, 22 Aug 2016)

Log Message

[Fetch API] Activate fetch api runtime flag by default
https://bugs.webkit.org/show_bug.cgi?id=160452

Patch by Youenn Fablet <you...@apple.com> on 2016-08-22
Reviewed by Alex Christensen.

Source/WebKit/mac:

* WebView/WebPreferences.mm:
(+[WebPreferences initialize]):

Source/WebKit2:

* Shared/WebPreferencesDefinitions.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (204704 => 204705)


--- trunk/Source/WebKit/mac/ChangeLog	2016-08-22 07:09:51 UTC (rev 204704)
+++ trunk/Source/WebKit/mac/ChangeLog	2016-08-22 09:53:47 UTC (rev 204705)
@@ -1,3 +1,13 @@
+2016-08-22  Youenn Fablet  <you...@apple.com>
+
+        [Fetch API] Activate fetch api runtime flag by default
+        https://bugs.webkit.org/show_bug.cgi?id=160452
+
+        Reviewed by Alex Christensen.
+
+        * WebView/WebPreferences.mm:
+        (+[WebPreferences initialize]):
+
 2016-08-21  Alex Christensen  <achristen...@webkit.org>
 
         Use Document& instead of Document* when getting cookies

Modified: trunk/Source/WebKit/mac/WebView/WebPreferences.mm (204704 => 204705)


--- trunk/Source/WebKit/mac/WebView/WebPreferences.mm	2016-08-22 07:09:51 UTC (rev 204704)
+++ trunk/Source/WebKit/mac/WebView/WebPreferences.mm	2016-08-22 09:53:47 UTC (rev 204705)
@@ -614,7 +614,7 @@
         [NSNumber numberWithBool:NO], WebKitWebGL2EnabledPreferenceKey,
 #endif
 #if ENABLE(FETCH_API)
-        [NSNumber numberWithBool:NO], WebKitFetchAPIEnabledPreferenceKey,
+        [NSNumber numberWithBool:YES], WebKitFetchAPIEnabledPreferenceKey,
 #endif
 #if ENABLE(DOWNLOAD_ATTRIBUTE)
         [NSNumber numberWithBool:NO], WebKitDownloadAttributeEnabledPreferenceKey,

Modified: trunk/Source/WebKit2/ChangeLog (204704 => 204705)


--- trunk/Source/WebKit2/ChangeLog	2016-08-22 07:09:51 UTC (rev 204704)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-22 09:53:47 UTC (rev 204705)
@@ -1,3 +1,12 @@
+2016-08-22  Youenn Fablet  <you...@apple.com>
+
+        [Fetch API] Activate fetch api runtime flag by default
+        https://bugs.webkit.org/show_bug.cgi?id=160452
+
+        Reviewed by Alex Christensen.
+
+        * Shared/WebPreferencesDefinitions.h:
+
 2016-08-22  Gyuyoung Kim  <gyuyoung....@navercorp.com>
 
         [SOUP] Change MessageDecoder with Decoder

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (204704 => 204705)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2016-08-22 07:09:51 UTC (rev 204704)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2016-08-22 09:53:47 UTC (rev 204705)
@@ -225,7 +225,7 @@
     macro(MockCaptureDevicesEnabled, mockCaptureDevicesEnabled, Bool, bool, false, "", "") \
     macro(ShadowDOMEnabled, shadowDOMEnabled, Bool, bool, true, "Shadow DOM", "HTML Shadow DOM prototype") \
     macro(DOMIteratorEnabled, domIteratorEnabled, Bool, bool, true, "", "") \
-    macro(FetchAPIEnabled, fetchAPIEnabled, Bool, bool, false, "", "") \
+    macro(FetchAPIEnabled, fetchAPIEnabled, Bool, bool, true, "", "") \
     macro(DownloadAttributeEnabled, downloadAttributeEnabled, Bool, bool, false, "", "") \
     macro(SelectionPaintingWithoutSelectionGapsEnabled, selectionPaintingWithoutSelectionGapsEnabled, Bool, bool, DEFAULT_SELECTION_PAINTING_WITHOUT_SELECTION_GAPS_ENABLED, "", "") \
     macro(ApplePayEnabled, applePayEnabled, Bool, bool, false, "", "") \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to