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

Side by Side Diff: LayoutTests/media/video-seekable.html

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 <video controls></video> 1 <video controls></video>
2 <script src=media-file.js></script> 2 <script src=media-file.js></script>
3 <script src=video-test.js></script> 3 <script src=video-test.js></script>
4 <script> 4 <script>
5 testExpected("video.seekable.length", 0); 5 testExpected("video.seekable.length", 0);
6 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); 6 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR");
7 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); 7 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR");
8 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); 8 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR");
9 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); 9 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR");
10 waitForEvent('canplaythrough', 10 waitForEvent("loadedmetadata",
11 function () 11 function ()
12 { 12 {
13 testExpected("video.seekable.length", 1); 13 testExpected("video.seekable.length", 1);
14 testExpected("video.seekable.start(0)", 0); 14 testExpected("video.seekable.start(0)", 0);
15 testExpected("video.seekable.end(0)", 0, ">"); 15 testExpected("video.seekable.end(0)", 5, ">");
16 testExpected("video.seekable.end(0)", 7, "<");
16 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ E_ERR"); 17 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ E_ERR");
17 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ ERR"); 18 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ ERR");
18 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE _ERR"); 19 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE _ERR");
19 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E RR"); 20 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E RR");
20 endTest(); 21 endTest();
21 } 22 }
22 ); 23 );
23 video.src = findMediaFile("video", "content/test"); 24 video.src = findMediaFile("video", "content/test");
24 </script> 25 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/video-seekable-expected.txt » ('j') | public/platform/WebMediaPlayer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698