https://bugzilla.wikimedia.org/show_bug.cgi?id=19915
Nick <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Nick <[email protected]> 2010-04-11 08:00:02 UTC --- I have found the source of this problem as well as a simple workaround: The reason this happens is because the <audio> tag specification does not support resizing, while the <video> tag specification does. As Firefox, Chrome and Opera all follow this specification, neither of the three support <audio> resizing, however <video> resizing works fine. Therefore, the simply workaround is to simple use <video> instead of <audio>, since they both use the exact same backend to handle content. In /extensions/OggHandler/oggPlayer.js Change line 558 from var tagName = params.isVideo ? 'video' : 'audio'; to var tagName = 'video'; It's a workaround, but it helps. I have tested this on my private mediawiki and now Firefox is completely fixed, Chrome resizes correctly but handles the player itself weirdly (but I assume this is a fault on the side of Chrome), however Opera still acts the way it did before the change (but this is a fault on the side of Opera now, not the specifications). -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
