[Webkit-unassigned] [Bug 219490] New: [GStreamer] Seek on loadedmetadata is ignored

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 3 08:04:12 PST 2020


https://bugs.webkit.org/show_bug.cgi?id=219490

            Bug ID: 219490
           Summary: [GStreamer] Seek on loadedmetadata is ignored
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebKitGTK
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: aboya at igalia.com
                CC: bugs-noreply at webkitgtk.org

I was writing a test for an unrelated bug when I found this.

        const eventWatcher = new EventWatcher(test, video, ["loadedmetadata", "seeked", "ended"]);
        await eventWatcher.wait_for("loadedmetadata");
        assert_equals(video.videoWidth, 320, "width when the video is loaded");
        assert_equals(video.videoHeight, 240, "height when the video is loaded");
        video.currentTime = 5;
        video.play();
        await eventWatcher.wait_for(["seeked", "ended"]);

You would expect the video to start playing on t=5, but it starts on t=0 instead. That's a bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20201203/68483d34/attachment-0001.htm>


More information about the webkit-unassigned mailing list