Title: [89191] trunk
- Revision
- 89191
- Author
- [email protected]
- Date
- 2011-06-18 01:42:50 -0700 (Sat, 18 Jun 2011)
Log Message
2011-06-18 Sheriff Bot <[email protected]>
Unreviewed, rolling out r89154.
http://trac.webkit.org/changeset/89154
https://bugs.webkit.org/show_bug.cgi?id=62926
It broke debug build on Qt (Requested by Ossy_weekend on
#webkit).
* platform/qt/Skipped:
2011-06-18 Sheriff Bot <[email protected]>
Unreviewed, rolling out r89154.
http://trac.webkit.org/changeset/89154
https://bugs.webkit.org/show_bug.cgi?id=62926
It broke debug build on Qt (Requested by Ossy_weekend on
#webkit).
* platform/network/qt/ResourceHandleQt.cpp:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (89190 => 89191)
--- trunk/LayoutTests/ChangeLog 2011-06-18 08:25:42 UTC (rev 89190)
+++ trunk/LayoutTests/ChangeLog 2011-06-18 08:42:50 UTC (rev 89191)
@@ -1,3 +1,14 @@
+2011-06-18 Sheriff Bot <[email protected]>
+
+ Unreviewed, rolling out r89154.
+ http://trac.webkit.org/changeset/89154
+ https://bugs.webkit.org/show_bug.cgi?id=62926
+
+ It broke debug build on Qt (Requested by Ossy_weekend on
+ #webkit).
+
+ * platform/qt/Skipped:
+
2011-06-17 Dirk Schulze <[email protected]>
Reviewed by Rob Buis.
Modified: trunk/LayoutTests/platform/qt/Skipped (89190 => 89191)
--- trunk/LayoutTests/platform/qt/Skipped 2011-06-18 08:25:42 UTC (rev 89190)
+++ trunk/LayoutTests/platform/qt/Skipped 2011-06-18 08:42:50 UTC (rev 89191)
@@ -367,6 +367,7 @@
http/tests/xmlhttprequest/cache-override.html
http/tests/xmlhttprequest/cross-origin-authorization.html
http/tests/xmlhttprequest/cross-origin-no-authorization.html
+http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html
# =========================================================================== #
# Failing inserting tests. #
Modified: trunk/Source/WebCore/ChangeLog (89190 => 89191)
--- trunk/Source/WebCore/ChangeLog 2011-06-18 08:25:42 UTC (rev 89190)
+++ trunk/Source/WebCore/ChangeLog 2011-06-18 08:42:50 UTC (rev 89191)
@@ -1,5 +1,16 @@
2011-06-18 Sheriff Bot <[email protected]>
+ Unreviewed, rolling out r89154.
+ http://trac.webkit.org/changeset/89154
+ https://bugs.webkit.org/show_bug.cgi?id=62926
+
+ It broke debug build on Qt (Requested by Ossy_weekend on
+ #webkit).
+
+ * platform/network/qt/ResourceHandleQt.cpp:
+
+2011-06-18 Sheriff Bot <[email protected]>
+
Unreviewed, rolling out r89189.
http://trac.webkit.org/changeset/89189
https://bugs.webkit.org/show_bug.cgi?id=62925
Modified: trunk/Source/WebCore/platform/network/qt/ResourceHandleQt.cpp (89190 => 89191)
--- trunk/Source/WebCore/platform/network/qt/ResourceHandleQt.cpp 2011-06-18 08:25:42 UTC (rev 89190)
+++ trunk/Source/WebCore/platform/network/qt/ResourceHandleQt.cpp 2011-06-18 08:42:50 UTC (rev 89191)
@@ -59,7 +59,6 @@
, m_data(data)
{}
- virtual void willSendRequest(ResourceHandle*, ResourceRequest&, const ResourceResponse&);
virtual void didReceiveResponse(ResourceHandle*, const ResourceResponse& response) { m_response = response; }
virtual void didReceiveData(ResourceHandle*, const char* data, int length, int) { m_data.append(data, length); }
virtual void didFinishLoading(ResourceHandle*, double /*finishTime*/) {}
@@ -70,17 +69,6 @@
Vector<char>& m_data;
};
-void WebCoreSynchronousLoader::willSendRequest(ResourceHandle* handle, ResourceRequest& request, const ResourceResponse& /*redirectResponse*/)
-{
- // FIXME: This needs to be fixed to follow the redirect correctly even for cross-domain requests.
- if (!protocolHostAndPortAreEqual(handle->firstRequest().url(), request.url())) {
- ASSERT(!m_error);
- m_error.setIsCancellation(true);
- request = ResourceRequest();
- return;
- }
-}
-
ResourceHandleInternal::~ResourceHandleInternal()
{
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes