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

Side by Side Diff: LayoutTests/media/video-seekable-expected.txt

Issue 607493002: Introduce WebMediaPlayer::seekable() to replace maxTimeSeekable() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
1 EXPECTED (video.seekable.length == '0') OK 1 EXPECTED (video.seekable.length == '0') OK
2 TEST(video.seekable.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th e maximum bound (0).) OK 2 TEST(video.seekable.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th e maximum bound (0).) OK
3 TEST(video.seekable.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma ximum bound (0).) OK 3 TEST(video.seekable.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma ximum bound (0).) OK
4 TEST(video.seekable.start(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec ute 'start' on 'TimeRanges': The index provided (0) is greater than or equal to the maximum bound (0).) OK 4 TEST(video.seekable.start(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec ute 'start' on 'TimeRanges': The index provided (0) is greater than or equal to the maximum bound (0).) OK
5 TEST(video.seekable.end(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut e 'end' on 'TimeRanges': The index provided (0) is greater than or equal to the maximum bound (0).) OK 5 TEST(video.seekable.end(0)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut e 'end' on 'TimeRanges': The index provided (0) is greater than or equal to the maximum bound (0).) OK
6 EVENT(canplaythrough) 6 EVENT(loadedmetadata)
7 EXPECTED (video.seekable.length == '1') OK 7 EXPECTED (video.seekable.length == '1') OK
8 EXPECTED (video.seekable.start(0) == '0') OK 8 EXPECTED (video.seekable.start(0) == '0') OK
9 EXPECTED (video.seekable.end(0) > '0') OK 9 EXPECTED (video.seekable.end(0) > '5') OK
10 EXPECTED (video.seekable.end(0) < '7') OK
10 TEST(video.seekable.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th e maximum bound (1).) OK 11 TEST(video.seekable.start(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exe cute 'start' on 'TimeRanges': The index provided (4294967295) is greater than th e maximum bound (1).) OK
11 TEST(video.seekable.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma ximum bound (1).) OK 12 TEST(video.seekable.end(-1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execu te 'end' on 'TimeRanges': The index provided (4294967295) is greater than the ma ximum bound (1).) OK
12 TEST(video.seekable.start(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec ute 'start' on 'TimeRanges': The index provided (1) is greater than or equal to the maximum bound (1).) OK 13 TEST(video.seekable.start(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to exec ute 'start' on 'TimeRanges': The index provided (1) is greater than or equal to the maximum bound (1).) OK
13 TEST(video.seekable.end(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut e 'end' on 'TimeRanges': The index provided (1) is greater than or equal to the maximum bound (1).) OK 14 TEST(video.seekable.end(1)) THROWS(DOMException.INDEX_SIZE_ERR: Failed to execut e 'end' on 'TimeRanges': The index provided (1) is greater than or equal to the maximum bound (1).) OK
14 END OF TEST 15 END OF TEST
15 16
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698