mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
eccf17ee01
--HG-- rename : content/media/test/test_autobuffer.html => content/media/test/test_preload_attribute.html rename : content/media/test/test_autobuffer2.html => content/media/test/test_preload_suspend.html
27 lines
819 B
HTML
27 lines
819 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Media test: Audio Constructor Test 2</title>
|
|
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
<script type="text/javascript" src="manifest.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
var tmpAudio = new Audio();
|
|
for (var i = 0; i < gAudioTests.length; ++i) {
|
|
var test = gAudioTests[i];
|
|
if (!tmpAudio.canPlayType(test.type))
|
|
continue;
|
|
|
|
var a1 = new Audio(test.name);
|
|
is(a1.getAttribute("preload"), "auto", "Preload automatically set to auto");
|
|
is(a1.src.match("/[^/]+$"), "/" + test.name, "src OK");
|
|
}
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|