mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
776 B
HTML
28 lines
776 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Media test: seek test 1</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body onunload="mediaTestCleanup();">
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
function on_metadataloaded() {
|
|
var v = document.getElementById('v');
|
|
var d = Math.round(v.duration*1000);
|
|
ok(d.toString() == "NaN", "Checking duration: " + d);
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
</script>
|
|
</pre>
|
|
<video id='v'
|
|
src='contentDuration3.sjs'
|
|
onloadedmetadata='on_metadataloaded();'></video>
|
|
</body>
|
|
</html>
|