Re: [webvtt-tests] Make WebVTT reftests fit in 600x600 viewport (#4385)

For /webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text_while_paused.html in Gecko it sometimes throws an exception "TypeError: c is undefined"

```js
    function updateCue() {
        var t = document.getElementById('track');
        var c = t.track.cues[0];
        c.text = 'f o o';
        takeScreenshotDelayed(1000);
    }
```

I think this is a bug in Gecko; it shouldn't start playing the video until the tracks are loaded. But I should make it stable somehow and test for Gecko's bug specifically in a new test that should also be stable...

View on GitHub: https://github.com/w3c/web-platform-tests/pull/4385#issuecomment-268907045

Received on Thursday, 22 December 2016 22:42:54 UTC