Title: [152085] trunk/Source/WebCore
Revision
152085
Author
commit-qu...@webkit.org
Date
2013-06-27 03:05:14 -0700 (Thu, 27 Jun 2013)

Log Message

[curl] Add "set-cookie" to appendable headers
https://bugs.webkit.org/show_bug.cgi?id=118061

Patch by Szabolcs Dávid <davi...@inf.u-szeged.hu> on 2013-06-27
Reviewed by Christophe Dumez.

Mark set-cookie as an appendable header.

* platform/network/curl/ResourceHandleManager.cpp:
(WebCore::isAppendableHeader):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152084 => 152085)


--- trunk/Source/WebCore/ChangeLog	2013-06-27 08:49:15 UTC (rev 152084)
+++ trunk/Source/WebCore/ChangeLog	2013-06-27 10:05:14 UTC (rev 152085)
@@ -1,3 +1,15 @@
+2013-06-27  Szabolcs Dávid  <davi...@inf.u-szeged.hu>
+
+        [curl] Add "set-cookie" to appendable headers
+        https://bugs.webkit.org/show_bug.cgi?id=118061
+
+        Reviewed by Christophe Dumez.
+
+        Mark set-cookie as an appendable header.
+
+        * platform/network/curl/ResourceHandleManager.cpp:
+        (WebCore::isAppendableHeader):
+
 2013-06-27  Horia Iosif Olaru  <ol...@adobe.com>
 
         Remove ENABLE_CSS_COMPOSITING guards around -webkit-background-blend mode related code. The same flag guards -webkit-blend-mode code, but those guards are not touched by this change.

Modified: trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp (152084 => 152085)


--- trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp	2013-06-27 08:49:15 UTC (rev 152084)
+++ trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp	2013-06-27 10:05:14 UTC (rev 152085)
@@ -255,6 +255,7 @@
         "proxy-authenticate",
         "public",
         "server",
+        "set-cookie",
         "te",
         "trailer",
         "transfer-encoding",
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to