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

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

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
1 <video controls></video> 1 <video controls></video>
2 <script src=media-file.js></script> 2 <script src=media-file.js></script>
3 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 3 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
4 (Please avoid writing new tests using video-test.js) --> 4 (Please avoid writing new tests using video-test.js) -->
5 <script src=video-test.js></script> 5 <script src=video-test.js></script>
6 <script> 6 <script>
7 testExpected("video.seekable.length", 0); 7 testExpected("video.seekable.length", 0);
8 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); 8 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR");
9 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); 9 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR");
10 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); 10 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR");
11 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); 11 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR");
12 waitForEvent("loadedmetadata", 12 waitForEvent("loadedmetadata",
13 function () 13 function ()
14 { 14 {
15 testExpected("video.seekable.length", 1); 15 testExpected("video.seekable.length", 1);
16 testExpected("video.seekable.start(0)", 0); 16 testExpected("video.seekable.start(0)", 0);
17 testExpected("video.seekable.end(0)", 5, ">"); 17 testExpected("video.seekable.end(0)", 5, ">");
18 testExpected("video.seekable.end(0)", 7, "<"); 18 testExpected("video.seekable.end(0)", 7, "<");
19 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ E_ERR"); 19 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ E_ERR");
20 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ ERR"); 20 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ ERR");
21 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE _ERR"); 21 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE _ERR");
22 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E RR"); 22 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E RR");
23 endTest(); 23 endTest();
24 } 24 }
25 ); 25 );
26 video.src = findMediaFile("video", "content/test"); 26 video.src = findMediaFile("video", "content/test");
27 </script> 27 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698