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

Side by Side Diff: LayoutTests/media/video-seek-to-current-position-expected.txt

Issue 340553004: Always notify the MediaPlayer of any seek. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 Test that seeking attribute is true immediately after a seek to the current posi tion, and goes back to false when the seek completes.
2
3 EVENT(loadedmetadata)
4 RUN(video.currentTime = seekTime)
5 EXPECTED (video.seeking == 'true') OK
6
7 EVENT(seeking)
8 EVENT(seeked)
9
10 EXPECTED (video.seeking == 'false') OK
11 EXPECTED (video.currentTime == '1') OK
12 RUN(video.currentTime = seekTime)
13 EXPECTED (video.seeking == 'true') OK
14
15 EVENT(seeking)
16 EVENT(seeked)
17
18 EXPECTED (video.seeking == 'false') OK
19 EXPECTED (video.currentTime == '1') OK
20 RUN(video.currentTime = seekTime)
21 EXPECTED (video.seeking == 'true') OK
22
23 EVENT(seeking)
24 EVENT(seeked)
25
26 EXPECTED (video.seeking == 'false') OK
27 EXPECTED (video.currentTime == '1') OK
28 END OF TEST
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698