git-svn-id: https://svn.webkit.org/repository/webkit/trunk@21508
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-05-15 George Staikos <staikos@kde.org>
+
+ Reviewed by Adam Roben.
+
+ - Pass cookies through from the loader.
+
+ * platform/graphics/qt/GraphicsContextQt.cpp:
+ (WebCore::GraphicsContext::strokeArc):
+
2007-05-15 Adam Treat <adam@staikos.net>
Reviewed by George Staikos.
if (!client)
return;
+ QStringList cookies = request->response.allValues("Set-Cookie");
+ foreach (QString c, cookies) {
+ setCookies(request->url, request->url, c);
+ }
QString contentType = request->response.value("Content-Type");
QString encoding;
int idx = contentType.indexOf(QLatin1Char(';'));