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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-preload-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: line 116: Uncaught (in promise) AbortError: The play() request wa s interrupted by a new load request.
2 CONSOLE ERROR: line 116: Uncaught (in promise) AbortError: The play() request wa s interrupted by a new load request.
1 Test to see if media loads automatically when 'preload' is specified. 3 Test to see if media loads automatically when 'preload' is specified.
2 4
3 5
4 Will load with 'preload=none', should not buffer automatically until 'play()' is called 6 Will load with 'preload=none', should not buffer automatically until 'play()' is called
5 RUN(video.setAttribute('preload', 'none')) 7 RUN(video.setAttribute('preload', 'none'))
6 RUN(video.removeAttribute('autoplay')) 8 RUN(video.removeAttribute('autoplay'))
7 EVENT(loadstart) 9 EVENT(loadstart)
8 did not buffer automatically OK 10 did not buffer automatically OK
9 RUN(video.play()) 11 RUN(video.play())
10 EVENT(play) 12 EVENT(play)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 Will load with 'preload=none', should buffer automatically because of 'autoplay' 49 Will load with 'preload=none', should buffer automatically because of 'autoplay'
48 RUN(video.setAttribute('preload', 'none')) 50 RUN(video.setAttribute('preload', 'none'))
49 RUN(video.setAttribute('autoplay', 'true')) 51 RUN(video.setAttribute('autoplay', 'true'))
50 RUN(video.load()) 52 RUN(video.load())
51 EVENT(loadstart) 53 EVENT(loadstart)
52 EVENT(loadedmetadata) 54 EVENT(loadedmetadata)
53 buffered automatically OK 55 buffered automatically OK
54 56
55 END OF TEST 57 END OF TEST
56 58
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698