-
Notifications
You must be signed in to change notification settings - Fork 2
/
tests-api.html
53 lines (45 loc) · 1.5 KB
/
tests-api.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cpu-audio tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css">
<style>
#qunit {position : relative !important ;}
</style>
<script>
// needed to avoid a unwanted hot start
window.localStorage.clear();
</script>
<script src="../build/cpu-audio.js"></script>
</head>
<body>
<p><a href="..">CPU-Audio Webcomponent</a></p>
<p>
This is the API tests. The playeur is not intented to be human-manipulated, so is hidden.
</p>
<p>
See also :
</p>
<ul>
<li><a href="./tests-minimal.html">Minimum services, as hash links</a></li>
<li><a href="./tests-interface.html">Graphic interface, if WebComponent fully supported</a></li>
<li><a href="./tests-controller.html">Controller interface</a></li>
<li>API</li>
<li><a href="./tests-parameters.html">Parameters in <head> test</a></li>
<li><a href="./tests-browser.html">Browser compliance and implementation tests</a></li>
<li><a href="../examples.html">Back to examples lists</a></li>
</ul>
<cpu-audio mode="hidden">
<audio id="track" controls="controls" preload="auto" muted="muted">
<source src="../tests-assets/blank.mp3" type="audio/mpeg" />
</audio>
</cpu-audio>
<div id="playground"></div>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../node_modules/qunit/qunit/qunit.js"></script>
<script src="./tests-api.js"></script>
</body>
</html>