Changeset 207662 in webkit


Ignore:
Timestamp:
Oct 21, 2016 1:04:43 AM (8 years ago)
Author:
jer.noble@apple.com
Message:

[mac-wk2 release] LayoutTest media/media-source/media-source-seek-detach-crash.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=163751

Reviewed by Eric Carlson.

Don't log when we receive an "error" event; this makes the test non-deterministic.

  • media/media-source/media-source-seek-detach-crash-expected.txt:
  • media/media-source/media-source-seek-detach-crash.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r207661 r207662  
     12016-10-21  Jer Noble  <jer.noble@apple.com>
     2
     3        [mac-wk2 release] LayoutTest media/media-source/media-source-seek-detach-crash.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=163751
     5
     6        Reviewed by Eric Carlson.
     7
     8        Don't log when we receive an "error" event; this makes the test non-deterministic.
     9
     10        * media/media-source/media-source-seek-detach-crash-expected.txt:
     11        * media/media-source/media-source-seek-detach-crash.html:
     12
    1132016-10-21  Jer Noble  <jer.noble@apple.com>
    214
  • trunk/LayoutTests/media/media-source/media-source-seek-detach-crash-expected.txt

    r207621 r207662  
    1313RUN(sourceBuffer.appendBuffer(loader.initSegment()))
    1414RUN(video.currentTime = 2)
    15 EVENT(error)
    1615END OF TEST
    1716
  • trunk/LayoutTests/media/media-source/media-source-seek-detach-crash.html

    r207621 r207662  
    5252        run('sourceBuffer.appendBuffer(loader.initSegment())');
    5353        setTimeout(() => { run('video.currentTime = 2'); });
    54         waitForEvent('error', endTestLater);
     54        video.addEventListener('error', endTestLater);
    5555    }
    5656    </script>
Note: See TracChangeset for help on using the changeset viewer.