Changeset 224979 in webkit


Ignore:
Timestamp:
Nov 17, 2017 12:43:11 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

LayoutTest http/tests/inspector/network/har/har-page.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=179781

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2017-11-17
Reviewed by Alexey Proskuryakov.

  • http/tests/inspector/network/har/har-page-expected.txt:
  • http/tests/inspector/network/har/har-page.html:

Filter out the protocol value since it might not be available if the resource was cached.

Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r224974 r224979  
     12017-11-17  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        LayoutTest http/tests/inspector/network/har/har-page.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=179781
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * http/tests/inspector/network/har/har-page-expected.txt:
     9        * http/tests/inspector/network/har/har-page.html:
     10        Filter out the protocol value since it might not be available if the resource was cached.
     11
    1122017-11-17  Ryan Haddad  <ryanhaddad@apple.com>
    213
  • trunk/LayoutTests/http/tests/inspector/network/har/har-page-expected.txt

    r223917 r224979  
    3030          "method": "GET",
    3131          "url": "http://127.0.0.1:8000/inspector/network/har/har-page.html",
    32           "httpVersion": "HTTP/1.1",
     32          "httpVersion": "<filtered>",
    3333          "cookies": [],
    3434          "headers": "<filtered>",
     
    4040          "status": 200,
    4141          "statusText": "OK",
    42           "httpVersion": "HTTP/1.1",
     42          "httpVersion": "<filtered>",
    4343          "cookies": [],
    4444          "headers": "<filtered>",
    4545          "content": {
    46             "size": 2915,
     46            "size": 3042,
    4747            "compression": 0,
    4848            "mimeType": "text/html",
    49             "text": "<filtered text (2915)>"
     49            "text": "<filtered text (3042)>"
    5050          },
    5151          "redirectURL": "",
     
    7171          "method": "GET",
    7272          "url": "http://127.0.0.1:8000/inspector/resources/inspector-test.js",
    73           "httpVersion": "",
     73          "httpVersion": "<filtered>",
    7474          "cookies": [],
    7575          "headers": "<filtered>",
     
    8181          "status": 200,
    8282          "statusText": "OK",
    83           "httpVersion": "",
     83          "httpVersion": "<filtered>",
    8484          "cookies": [],
    8585          "headers": "<filtered>",
  • trunk/LayoutTests/http/tests/inspector/network/har/har-page.html

    r223899 r224979  
    2323        if (key === "_fetchType")
    2424            return undefined;
     25
     26        // If cached the protocol might not be available.
     27        if (key === "httpVersion")
     28            return "<filtered>";
    2529
    2630        // Headers include dynamic data.
Note: See TracChangeset for help on using the changeset viewer.