Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-controls-captions-expected.txt

Issue 1079323002: Support text track selection in video controls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and lgtm nits Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 Tests that the closed captions button, when toggled, updates the text track disp lay area. 1 Tests that the closed captions button enables track switching
2 2
3 EVENT(canplaythrough) 3 EVENT(canplaythrough)
4 4
5 ** Caption button should be visible and enabled. 5 ** Caption button should be visible and enabled.
6 EXPECTED (captionsButtonCoordinates[0] > '0') OK 6 EXPECTED (captionsButtonCoordinates[0] > '0') OK
7 EXPECTED (captionsButtonCoordinates[1] > '0') OK 7 EXPECTED (captionsButtonCoordinates[1] > '0') OK
8 EXPECTED (captionsButtonElement.disabled == 'false') OK 8 EXPECTED (captionsButtonElement.disabled == 'false') OK
9 9
10 ** The captions track should be listed in textTracks, but not yet loaded. ** 10 ** The captions track should be listed in textTracks, but not yet loaded. **
11 EXPECTED (video.textTracks.length == '1') OK 11 EXPECTED (video.textTracks.length == '1') OK
12 EXPECTED (video.textTracks[0].mode == 'disabled') OK 12 EXPECTED (video.textTracks[0].mode == 'disabled') OK
13 Failed to find text track container element 13 Failed to find text track container element
14 14
15 ** Captions track should load and captions should become visible after button is clicked ** 15 ** Captions track should load and captions should become visible after a track i s selected **
16 *** Click the CC button. 16 *** Click the CC button.
17 EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'Lorem') OK 17 EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'Lorem') OK
18 18
19 ** Captions should not be visible after button is clicked again ** 19 ** Captions should not be visible after Off is clicked **
20 *** Click the CC button. 20 *** Click the CC button.
21 No text track cue with display id '-webkit-media-text-track-display' is currentl y visible 21 No text track cue with display id '-webkit-media-text-track-display' is currentl y visible
22 22
23 ** Remove DOM node representing the track element ** 23 ** Remove DOM node representing the track element **
24 24
25 ** Caption button should not be visible. 25 ** Caption button should not be visible.
26 EXPECTED (captionsButtonCoordinates[0] <= '0') OK 26 EXPECTED (captionsButtonCoordinates[0] <= '0') OK
27 EXPECTED (captionsButtonCoordinates[1] <= '0') OK 27 EXPECTED (captionsButtonCoordinates[1] <= '0') OK
28 28
29 ** Add non-default text track through HTML with unloadable URI ** 29 ** Add non-default text track through HTML with unloadable URI **
(...skipping 14 matching lines...) Expand all
44 EXPECTED (captionsButtonCoordinates[1] <= '0') OK 44 EXPECTED (captionsButtonCoordinates[1] <= '0') OK
45 45
46 ** Add a text track through JS to the video element ** 46 ** Add a text track through JS to the video element **
47 47
48 ** Caption button should be visible and enabled. 48 ** Caption button should be visible and enabled.
49 EXPECTED (captionsButtonCoordinates[0] > '0') OK 49 EXPECTED (captionsButtonCoordinates[0] > '0') OK
50 EXPECTED (captionsButtonCoordinates[1] > '0') OK 50 EXPECTED (captionsButtonCoordinates[1] > '0') OK
51 EXPECTED (captionsButtonElement.disabled == 'false') OK 51 EXPECTED (captionsButtonElement.disabled == 'false') OK
52 END OF TEST 52 END OF TEST
53 53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698