Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / media / video-seek-no-src-exception.html
1 <html>
2 <body>
3
4     <video loop controls></video>
5     
6     <p>Test that seeking video with no 'src' attribute throws an INVALID_STATE_ERR exception.</p>
7
8     <script src=video-test.js></script>
9     <script>
10         testExpected("video.networkState", HTMLMediaElement.NETWORK_EMPTY);
11         testExpected("video.readyState", HTMLMediaElement.HAVE_NOTHING);
12         testDOMException("video.currentTime = 1.1", "DOMException.INVALID_STATE_ERR");
13         setTimeout(endTest, 200) 
14     </script>
15     
16 </body>
17 </html>