summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_invalid_seek.html
blob: 8aa514b97782d78527a9d071f81052cd37026576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE HTML>
<html>
<head>
  <title>Media test: invalide seek test</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<video id='v'></video>
<pre id="test">
<script class="testbody" type="text/javascript">
// http://www.whatwg.org/specs/web-apps/current-work/#dom-media-seek
// If the media element's readyState is HAVE_NOTHING, then the user agent
// must raise an InvalidStateError exception.
var v = document.getElementById('v');
var passed = false;

ok(v.readyState == HTMLMediaElement.HAVE_NOTHING,
   "Invalid ready state in media element");

try {
  v.seek(1);
}
catch(e) {
  passed = true;
}

ok(passed, "Video did not raise error during invalid seek");
</script>
</pre>
</body>
</html>