Changeset 90927 in webkit


Ignore:
Timestamp:
Jul 13, 2011 10:04:28 AM (13 years ago)
Author:
Philippe Normand
Message:

[GTK] media/media-blocked-by-willsendrequest.html fails
https://bugs.webkit.org/show_bug.cgi?id=63699

Reviewed by Martin Robinson.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (willSendRequestCallback): Abort the request if explicitely asked by the LayoutTestController's willSendRequestReturnsNull() function.

LayoutTests:

[GTK] media/media-blocked-by-willsendrequest.html fails
https://bugs.webkit.org/show_bug.cgi?id=63699

Reviewed by Martin Robinson.

  • platform/gtk/Skipped: Unskip fixed test.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r90917 r90927  
     12011-07-12  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK] media/media-blocked-by-willsendrequest.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=63699
     5
     6        Reviewed by Martin Robinson.
     7
     8        * platform/gtk/Skipped: Unskip fixed test.
     9
    1102011-07-13  Gabor Loki  <loki@webkit.org>
    211
  • trunk/LayoutTests/platform/gtk/Skipped

    r90856 r90927  
    15471547fast/workers/worker-crash-with-invalid-location.html
    15481548
    1549 # https://bugs.webkit.org/show_bug.cgi?id=63699
    1550 # access to file:// uris should be restricted in some cases.
    1551 media/media-blocked-by-willsendrequest.html
    15521549
    15531550# https://bugs.webkit.org/show_bug.cgi?id=64085
  • trunk/Tools/ChangeLog

    r90926 r90927  
     12011-07-12  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK] media/media-blocked-by-willsendrequest.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=63699
     5
     6        Reviewed by Martin Robinson.
     7
     8        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     9        (willSendRequestCallback): Abort the request if explicitely asked
     10        by the LayoutTestController's willSendRequestReturnsNull() function.
     11
    1122011-07-13  Adam Barth  <abarth@webkit.org>
    213
  • trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r90918 r90927  
    10551055static void willSendRequestCallback(WebKitWebView* webView, WebKitWebFrame*, WebKitWebResource*, WebKitNetworkRequest* request, WebKitNetworkResponse*)
    10561056{
    1057     if (!done && gLayoutTestController->willSendRequestReturnsNull())
     1057    if (!done && gLayoutTestController->willSendRequestReturnsNull()) {
     1058        // As requested by the LayoutTestController, don't perform the request.
     1059        webkit_network_request_set_uri(request, "about:blank");
    10581060        return;
     1061    }
    10591062
    10601063    SoupMessage* soupMessage = webkit_network_request_get_message(request);
Note: See TracChangeset for help on using the changeset viewer.