OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <title>Setting currentTime with a media controller present</title> | |
5 </head> | |
6 <body> | |
7 <video mediagroup="x"></video> | |
8 <script src="video-test.js"></script> | |
9 <script> | |
10 testExpected("video.controller instanceof MediaController", true); | |
11 testDOMException("video.currentTime = 0", "DOMException.INVALID_STAT E_ERR"); | |
12 endTest(); | |
13 </script> | |
14 </body> | |
15 </html> | |
OLD | NEW |