[Webkit-unassigned] [Bug 16985] New: Webkit video element does not repaint video with Gtklauncher

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 23 10:26:09 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=16985

           Summary: Webkit video element does not repaint video with
                    Gtklauncher
           Product: WebKit
           Version: 525+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: baggetun at gmail.com
                CC: alp at atoker.com


With latest version of webkit svn checkout I made a test where I built Webkit
with ./configure --enable-video --enable.svg --enable-debug

I then made a test html page with the video element included.

Webkit only shows the first frame, but audio continue as normal.

However, if I resize, maximize, minimize etc I trigger a repaint of the video
and it jumps to the current frame. Then it only shows that frame until I e.g
resize again.

I am using gstreamer as a backend on a Debian Testing box.

I tested this both with a .mov and with an .ogg

html + javascript code I am using

<script>
function playPause() {
  var myVideo = document.getElementsByTagName('video')[0];
  if (myVideo.paused)
    myVideo.play();
  else
    myVideo.pause();
}
</script>

<p><video src=files/movie.mov autoplay></video> <br/><input type=button
onclick="playPause()" value="Play/Pause"></p>


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list