mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
32
dom/media/test/test_invalid_seek.html
Normal file
32
dom/media/test/test_invalid_seek.html
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Media test: invalide seek test</title>
|
||||
<script type="text/javascript" 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue