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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-play-require-user-gesture-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 WARNING: Failed to execute 'play' on 'HTMLMediaElement': API can only be initiated by a user gesture. 1 CONSOLE WARNING: Failed to execute 'play' on 'HTMLMediaElement': API can only be initiated by a user gesture.
2 CONSOLE ERROR: line 1: Uncaught (in promise) NotAllowedError: play() can only be initiated by a user gesture.
2 Test that video play() does not work unless a user clicked on the play button. 3 Test that video play() does not work unless a user clicked on the play button.
3 4
4 EVENT(canplaythrough) 5 EVENT(canplaythrough)
5 6
6 * No user gesture initiated 7 * No user gesture initiated
7 RUN(video.play()) 8 RUN(video.play())
8 EXPECTED (video.paused == 'true') OK 9 EXPECTED (video.paused == 'true') OK
9 10
10 * User gesture initiated 11 * User gesture initiated
11 EVENT(playing) 12 EVENT(playing)
12 RUN(video.pause()) 13 RUN(video.pause())
13 EVENT(pause) 14 EVENT(pause)
14 EXPECTED (video.paused == 'true') OK 15 EXPECTED (video.paused == 'true') OK
15 END OF TEST 16 END OF TEST
16 17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698