mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ff37f49080
--HG-- extra : rebase_source : f046ff1f706875c2188ce3593c45d637ddf5a144
32 lines
896 B
HTML
32 lines
896 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test that an audio element that's already playing when controls are attached displays the controls</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<p id="display"></p>
|
|
|
|
<div id="content">
|
|
<audio id="audio" controls src="audio.ogg"></audio>
|
|
</div>
|
|
|
|
<pre id="test">
|
|
<script class="testbody">
|
|
var audio = document.getElementById("audio");
|
|
audio.play();
|
|
audio.ontimeupdate = function doTest() {
|
|
ok(audio.getBoundingClientRect().height > 0,
|
|
"checking audio element height is greater than zero");
|
|
audio.ontimeupdate = null;
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|