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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit-expected.txt

Issue 1576283003: Have HTMLMediaElement::play() return a Promise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 CONSOLE ERROR: Uncaught (in promise) AbortError: The play() request was interrup ted by a call to pause().
1 Tests that the video is paused after cues that have pause-on-exit flag are proce ssed 2 Tests that the video is paused after cues that have pause-on-exit flag are proce ssed
2 3
3 EVENT(canplaythrough) 4 EVENT(canplaythrough)
4 EXPECTED (testTrack.track.cues.length == '4') OK 5 EXPECTED (testTrack.track.cues.length == '4') OK
5 6
6 RUN(video.play()) 7 RUN(video.play())
7 EXPECTED (video.paused == 'false') OK 8 EXPECTED (video.paused == 'false') OK
8 9
9 EVENT(pause) 10 EVENT(pause)
10 EVENT(exit) 11 EVENT(exit)
11 EXPECTED (currentCue.id == '0') OK 12 EXPECTED (currentCue.id == '0') OK
12 EXPECTED (video.paused == 'true') OK 13 EXPECTED (video.paused == 'true') OK
13 RUN(video.play()) 14 RUN(video.play())
14 15
15 EVENT(pause) 16 EVENT(pause)
16 EVENT(exit) 17 EVENT(exit)
17 EXPECTED (currentCue.id == '2') OK 18 EXPECTED (currentCue.id == '2') OK
18 EXPECTED (video.paused == 'true') OK 19 EXPECTED (video.paused == 'true') OK
19 RUN(video.play()) 20 RUN(video.play())
20 END OF TEST 21 END OF TEST
21 22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698