| OLD | NEW |
| (Empty) |
| 1 Tests that the closed captions button enables track switching | |
| 2 | |
| 3 EVENT(canplaythrough) | |
| 4 | |
| 5 ** Caption button should be visible and enabled. | |
| 6 EXPECTED (captionsButtonCoordinates[0] > '0') OK | |
| 7 EXPECTED (captionsButtonCoordinates[1] > '0') OK | |
| 8 EXPECTED (captionsButtonElement.disabled == 'false') OK | |
| 9 | |
| 10 ** The captions track should be listed in textTracks, but not yet loaded. ** | |
| 11 EXPECTED (video.textTracks.length == '1') OK | |
| 12 EXPECTED (video.textTracks[0].mode == 'disabled') OK | |
| 13 Failed to find text track container element | |
| 14 | |
| 15 ** Captions track should load and captions should become visible after a track i
s selected ** | |
| 16 *** Click the CC button. | |
| 17 EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'Lorem') OK | |
| 18 | |
| 19 ** Captions should not be visible after Off is clicked ** | |
| 20 *** Click the CC button. | |
| 21 No text track cue with display id '-webkit-media-text-track-display' is currentl
y visible | |
| 22 | |
| 23 ** Remove DOM node representing the track element ** | |
| 24 | |
| 25 ** Caption button should not be visible. | |
| 26 EXPECTED (captionsButtonCoordinates[0] <= '0') OK | |
| 27 EXPECTED (captionsButtonCoordinates[1] <= '0') OK | |
| 28 | |
| 29 ** Add non-default text track through HTML with unloadable URI ** | |
| 30 EXPECTED (track.readyState == '0') OK | |
| 31 EXPECTED (track.track.mode == 'disabled') OK | |
| 32 EXPECTED (video.textTracks.length == '1') OK | |
| 33 | |
| 34 ** Caption button should be visible and enabled. | |
| 35 EXPECTED (captionsButtonCoordinates[0] > '0') OK | |
| 36 EXPECTED (captionsButtonCoordinates[1] > '0') OK | |
| 37 EXPECTED (captionsButtonElement.disabled == 'false') OK | |
| 38 | |
| 39 *** Click the CC button. | |
| 40 ** Track failed to load ** | |
| 41 | |
| 42 ** Caption button should not be visible. | |
| 43 EXPECTED (captionsButtonCoordinates[0] <= '0') OK | |
| 44 EXPECTED (captionsButtonCoordinates[1] <= '0') OK | |
| 45 | |
| 46 ** Add a text track through JS to the video element ** | |
| 47 | |
| 48 ** Caption button should be visible and enabled. | |
| 49 EXPECTED (captionsButtonCoordinates[0] > '0') OK | |
| 50 EXPECTED (captionsButtonCoordinates[1] > '0') OK | |
| 51 EXPECTED (captionsButtonElement.disabled == 'false') OK | |
| 52 END OF TEST | |
| 53 | |
| OLD | NEW |