Changeset 258205 in webkit


Ignore:
Timestamp:
Mar 10, 2020 6:56:00 AM (4 years ago)
Author:
eocanha@igalia.com
Message:

REGRESSION(r257977): [GTK] http/tests/media/hls/video-cookie.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=208803

Reviewed by Philippe Normand.

Supply Content-Length, so WebKit GStreamer can actually know when the download has finished
without mistaking EOF with a stall.

  • http/tests/media/resources/video-cookie-check-cookie.php: Supply Content-Length.
  • platform/gtk/TestExpectations: Removed the test as failing.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r258202 r258205  
     12020-03-10  Enrique Ocaña González  <eocanha@igalia.com>
     2
     3        REGRESSION(r257977): [GTK] http/tests/media/hls/video-cookie.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=208803
     5
     6        Reviewed by Philippe Normand.
     7
     8        Supply Content-Length, so WebKit GStreamer can actually know when the download has finished
     9        without mistaking EOF with a stall.
     10
     11        * http/tests/media/resources/video-cookie-check-cookie.php: Supply Content-Length.
     12        * platform/gtk/TestExpectations: Removed the test as failing.
     13
    1142020-03-10  youenn fablet  <youenn@apple.com>
    215
  • trunk/LayoutTests/http/tests/media/resources/video-cookie-check-cookie.php

    r173809 r258205  
    1717        header("Cache-Control: no-store");
    1818        header("Connection: close");
     19        header("Content-Length: " . filesize($fileName));
    1920
    2021        $fn = fopen($fileName, "r");
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r258158 r258205  
    27022702imported/w3c/web-platform-tests/intersection-observer/v2/cross-origin-occlusion.sub.html [ Missing ]
    27032703
    2704 webkit.org/b/208803 http/tests/media/hls/video-cookie.html [ Failure Pass ]
    2705 
    27062704webkit.org/b/208809 imported/w3c/web-platform-tests/css/WOFF2/blocks-extraneous-data-001.xht [ ImageOnlyFailure Pass ]
    27072705webkit.org/b/208809 imported/w3c/web-platform-tests/css/WOFF2/blocks-extraneous-data-002.xht [ ImageOnlyFailure Pass ]
Note: See TracChangeset for help on using the changeset viewer.