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

Side by Side Diff: LayoutTests/media/mediastream-srcobject-expected.txt

Issue 545933002: Implement HTMLMediaElement::srcObject. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New approach - with #includes that violate checkdeps rules Created 6 years, 3 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
(Empty)
1 Test that setting the HTMLMediaElement.srcObject overrides setting the src attri bute and if the srcObect is set to null, media is reloaded from the src attribut e.
2
3 Set src to local file.
4 EVENT(loadstart)
5 EVENT(durationchange)
6 EVENT(loadeddata)
7 EVENT(play)
8 EVENT(playingFromFile)
9
10 Request access to local media.
11 EVENT(canplaythrough)
12 Got a MediaStream. Start playing it.
13 EVENT(loadstart)
14 EVENT(durationchange)
15 EVENT(loadeddata)
16 EVENT(play)
17 EVENT(playingVideo)
18
19 MediaStream is playing. Set srcObject = null.
20 EVENT(canplaythrough)
21 EVENT(loadstart)
22 EVENT(durationchange)
23 EVENT(loadeddata)
24 EVENT(play)
25 EVENT(playingFromFile)
26
27 END OF TEST
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698