Changeset 85475 in webkit


Ignore:
Timestamp:
May 2, 2011 7:29:51 AM (13 years ago)
Author:
Philippe Normand
Message:

2011-05-02 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Carlson.

[GTK] Media tests relying on video-paint-test.js are still flaky
https://bugs.webkit.org/show_bug.cgi?id=59934

Dump the render tree after the video completed the seek. This is
to avoid flake happening in the control slider not always being at
beginning of the timeline.

  • media/video-paint-test.js: (init.document.addEventListener.): (init):
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r85474 r85475  
     12011-05-02  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Eric Carlson.
     4
     5        [GTK] Media tests relying on video-paint-test.js are still flaky
     6        https://bugs.webkit.org/show_bug.cgi?id=59934
     7
     8        Dump the render tree after the video completed the seek. This is
     9        to avoid flake happening in the control slider not always being at
     10        beginning of the timeline.
     11
     12        * media/video-paint-test.js:
     13        (init.document.addEventListener.):
     14        (init):
     15
    1162011-05-02  Zsolt Fehér  <h490267@stud.u-szeged.hu>
    217
  • trunk/LayoutTests/media/video-paint-test.js

    r84409 r85475  
    1010                video.pause();
    1111                video.currentTime = 0;
    12                 if (window.layoutTestController)
    13                     layoutTestController.notifyDone();
     12                video.addEventListener("seeked", function() {
     13                    if (window.layoutTestController)
     14                        layoutTestController.notifyDone();
     15                });
    1416            });
    1517            document.body.offsetLeft;
Note: See TracChangeset for help on using the changeset viewer.