Changeset 53258 in webkit


Ignore:
Timestamp:
Jan 14, 2010 4:11:44 AM (14 years ago)
Author:
Philippe Normand
Message:

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

Reviewed by Xan Lopez.

[GTK] Failing media/video-seek-past-end-playing.html
https://bugs.webkit.org/show_bug.cgi?id=33015

  • media/video-seek-past-end-playing.html: Removed the last timer of this test.
  • platform/gtk/Skipped: Unskip test above.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53253 r53258  
     12010-01-13  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Failing media/video-seek-past-end-playing.html
     6        https://bugs.webkit.org/show_bug.cgi?id=33015
     7
     8        * media/video-seek-past-end-playing.html: Removed the last timer of this test.
     9        * platform/gtk/Skipped: Unskip test above.
     10
    1112010-01-14  Eric Seidel  <eric@webkit.org>
    212
  • trunk/LayoutTests/media/video-seek-past-end-playing.html

    r53147 r53258  
    2727           testExpected("mediaElement.currentTime", 0, '>');
    2828           run("video.currentTime = 500");
    29            setTimeout(seekCheck, 200);
     29        } else if (timeupdateEventCount == 10) {
     30           // Wait some more timeupdate events so we can check the
     31           // media engine performed the seek.
     32           consoleWrite("");
     33           testExpected("video.paused", false);
     34           testExpected("mediaElement.currentTime", 0, '>');
     35           consoleWrite("");
     36           // reset the counter to prevent infinite loop if the
     37           // test is re-executed manually.
     38           timeupdateEventCount = 0;
     39           endTest();
    3040        }
    31     }
    32 
    33     function seekCheck()
    34     {
    35         consoleWrite("");
    36         testExpected("video.paused", false);
    37         testExpected("mediaElement.currentTime", 0, '>');
    38         consoleWrite("");
    39         // reset the counter to prevent infinite loop if the
    40         // test is re-executed manually.
    41         timeupdateEventCount = 0;
    42         endTest();
    4341    }
    4442
  • trunk/LayoutTests/platform/gtk/Skipped

    r53220 r53258  
    57465746# Fails on and off (more often fails) on the release bot
    57475747media/event-attributes.html
    5748 
    5749 # Fails on release bot, see https://bugs.webkit.org/show_bug.cgi?id=33015
    5750 media/video-seek-past-end-playing.html
Note: See TracChangeset for help on using the changeset viewer.