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

Side by Side Diff: third_party/WebKit/LayoutTests/media/event-attributes-expected.txt

Issue 2024533002: Convert csp-*, event-* and invalid-* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 6 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 EVENT(loadstart)
2 EVENT(durationchange)
3 EVENT(loadedmetadata)
4 EVENT(loadeddata)
5 EVENT(canplay)
6 EVENT(canplaythrough)
7 EXPECTED (progressEventCount >= '1') OK
8
9 *** starting playback
10 RUN(video.play())
11 EVENT(play)
12 EVENT(playing)
13
14 *** changing playback rate
15 RUN(video.playbackRate = 2)
16 EVENT(ratechange)
17
18 *** setting volume
19 RUN(video.volume = 0.5)
20 EVENT(volumechange)
21
22 *** pausing playback
23 RUN(video.pause())
24 EVENT(pause)
25
26 *** seeking
27 RUN(video.currentTime = 5.6)
28 EVENT(seeking)
29 EVENT(seeked)
30
31 *** beginning playback
32 RUN(video.play())
33 EVENT(play)
34 EVENT(playing)
35 EVENT(pause)
36 EVENT(ended)
37
38 *** played to end, setting 'src' to an invalid movie
39 RUN(progressEventCount = 0)
40 EVENT(abort)
41 EVENT(emptied)
42 EVENT(ratechange)
43 EVENT(loadstart)
44 EVENT(error)
45 EXPECTED (progressEventCount == '0') OK
46 END OF TEST
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698