Is it possible to show subtitles on an HTML5 video control in fullscreen mode?
I can show them (for example on FF 11.0) in window mode, with a slightly modified version of cuepoint.js to show "live" subtitles:
Cuepoint.prototype.addLiveSlide = function(html) {
var self;
this.html = html;
self = this;
return this.video.addEventListener("timeupdate", function() {
return self.update(html);
},
false);
};
But, when user goes fullscreen, subtitles do not show... When back to window mode, they do show again.
Is this behaviour by design, a bug, or do I miss something?