Changeset 53550 in webkit


Ignore:
Timestamp:
Jan 20, 2010 9:22:49 AM (14 years ago)
Author:
Philippe Normand
Message:

2010-01-20 Philippe Normand <pnormand@igalia.com>

Reviewed by Darin Adler.

[Gtk] media/video-play-pause-exception.html is flacky
https://bugs.webkit.org/show_bug.cgi?id=33900

Refactored the test to use the pause event instead of a timer.

  • media/video-play-pause-exception.html:
  • platform/gtk/Skipped:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53548 r53550  
     12010-01-20  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        [Gtk] media/video-play-pause-exception.html is flacky
     6        https://bugs.webkit.org/show_bug.cgi?id=33900
     7
     8        Refactored the test to use the pause event instead of a timer.
     9        * media/video-play-pause-exception.html:
     10        * platform/gtk/Skipped:
     11
    1122010-01-20  Ben Murdoch  <benm@google.com>
    213
  • trunk/LayoutTests/media/video-play-pause-exception.html

    r49702 r53550  
    1 
     1<html>
     2<body>
    23<video controls></video>
    34
     
    1011    waitForEvent("loadstart");
    1112    waitForEvent("timeupdate");
    12     waitForEvent("pause");
    1313    waitForEvent("waiting");
    1414
    15     run("video.play()");
    16     run("video.pause()");
    17 
    18     function someTimeLater()
     15    function onpause()
    1916    {
    2017        testExpected("video.networkState", HTMLMediaElement.NETWORK_EMPTY);
     
    2219        consoleWrite("");
    2320     }
    24    
    25     setTimeout(someTimeLater, 400)
     21
     22    waitForEvent("pause", onpause);
     23
     24    run("video.play()");
     25    run("video.pause()");
    2626</script>
     27</body>
     28</html>
  • trunk/LayoutTests/platform/gtk/Skipped

    r53462 r53550  
    55705570media/video-currentTime-set.html
    55715571media/video-play-pause-events.html
    5572 media/video-play-pause-exception.html
    55735572
    55745573# New events failing; see https://bugs.webkit.org/show_bug.cgi?id=28823
Note: See TracChangeset for help on using the changeset viewer.