Changeset 47203 in webkit


Ignore:
Timestamp:
Aug 13, 2009 9:36:38 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-08-13 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

[Gtk][REGRESSION] XHR test failures after r45558
https://bugs.webkit.org/show_bug.cgi?id=27143

Reenable the test that is fixed by this changeset.

  • platform/gtk/Skipped:

2009-08-13 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

[Gtk][REGRESSION] XHR test failures after r45558
https://bugs.webkit.org/show_bug.cgi?id=27143

Fix one of the regressions caused by the new sniffing code -
disable sniffing when that behavior is explicitly requested.

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::startHttp):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r47200 r47203  
     12009-08-13  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [Gtk][REGRESSION] XHR test failures after r45558
     6        https://bugs.webkit.org/show_bug.cgi?id=27143
     7
     8        Reenable the test that is fixed by this changeset.
     9
     10        * platform/gtk/Skipped:
     11
    1122009-08-13  Shinichiro Hamaji  <hamaji@chromium.org>
    213
  • trunk/LayoutTests/platform/gtk/Skipped

    r47039 r47203  
    59335933http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html
    59345934http/tests/xmlhttprequest/cache-override.html
    5935 http/tests/xmlhttprequest/small-chunks-response-text.html
    59365935
    59375936# REGRESSION: See Bug #27144 - https://bugs.webkit.org/show_bug.cgi?id=27144
  • trunk/WebCore/ChangeLog

    r47202 r47203  
     12009-08-13  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [Gtk][REGRESSION] XHR test failures after r45558
     6        https://bugs.webkit.org/show_bug.cgi?id=27143
     7
     8        Fix one of the regressions caused by the new sniffing code -
     9        disable sniffing when that behavior is explicitly requested.
     10
     11        * platform/network/soup/ResourceHandleSoup.cpp:
     12        (WebCore::startHttp):
     13
    1142009-08-13  Patrick Mueller  <Patrick_Mueller@us.ibm.com>
    215
  • trunk/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r46991 r47203  
    532532    soup_message_headers_replace(d->m_msg->request_headers, "Accept-Encoding", "identity");
    533533
     534    if(!handle->shouldContentSniff())
     535        soup_message_disable_feature(d->m_msg, SOUP_TYPE_CONTENT_SNIFFER);
     536
    534537    // Balanced in ResourceHandleInternal's destructor; we need to
    535538    // keep our own ref, because after queueing the message, the
Note: See TracChangeset for help on using the changeset viewer.