Then errors flows in console. (Both .exe and .appimage)
TypeError: null is not an object (evaluating 'panel.parentElement.querySelector')
I've looked a bit into the problem, it's when browser trying to update time (bar?), verifying whether controls are visible, but somewhere not going well:
// At line 900, in a seems built-in script, but named "Annonymous Script 1"
controlsAreHidden: function()
{
if (this.controlsAreAlwaysVisible())
return false;
var panel = this.controls.panel;
return (!panel.classList.contains(this.ClassNames.show) || panel.classList.contains(this.ClassNames.hidden)) && (panel.parentElement.querySelector(':hover') !== panel);
},
panel.parentElement is null. It maybe somewhere else have missed setting it.
Besides, a <video> without <track> works without errors.
P.S. I see another problem, but not verified well Edit: exists on all webkit browsers:
OtterBrowser can't handle something properly. Details below:
Here's the HTML:
Do javascript:
Then errors flows in console. (Both .exe and .appimage)
I've looked a bit into the problem, it's when browser trying to update time (bar?), verifying whether controls are visible, but somewhere not going well:
panel.parentElement
is null. It maybe somewhere else have missed setting it.Besides, a
<video>
without<track>
works without errors.P.S. I see another problem,
but not verified wellEdit: exists on all webkit browsers:Both vtt subtitles are in timeline.
But on other browsers like firefox, the vtt will be replaced, i.e. only 'another_vtt' shows.
That's all... ;)