[Webkit-unassigned] [Bug 45971] REGRESSION: r67568-r67643: HTML5 Video on Youtube broken

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Sep 20 10:21:29 PDT 2010


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





--- Comment #4 from Eric Carlson <eric.carlson at apple.com>  2010-09-20 10:21:29 PST ---
(In reply to comment #3)
> Your Youtube5 extension is likely doing the same thing as toggling the HTML5 beta and also may 
> be providing the Wide-by-default option that I'm using with the YoutubeWide extension. 
> Regardless, the resizing broke for HTML5 playback between the nightly releases.
> 
> Also, can anyone confirm the inability to use Command-Keys while on these pages?
>
Yes, command-keys don't work if the <video> element has focus. Click anywhere else on the page and they work again.

I think this is because they are binding 'keypress' to a function that controls some aspects of display and playback (eg. 'esc' to exit fullscreen, space to play/pause), but it *always* calls preventDefault:

    $.prototype.lc = function (a) {
        a.keyCode == 27 && this.ob && rd(this, k);
        if (a.keyCode == 32 || a.keyCode == 179) ud(this);
        a.keyCode == 178 && this.a.pause();
        a.preventDefault()
    };

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



More information about the webkit-unassigned mailing list