blob: 1ad77daa8f5e11fe93f967c74d387a1e7dd2b772 (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>howler.js tests</title>
<style type='text/css'>
html {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
width: 100%;
height: 100%;
overflow: hidden;
background: #e2e0d8;
border: 10px solid #bab6a7;
margin: 0;
padding: 0;
outline: 0;
font-family: 'Lucida Grande', Arial;
font-weight: bold;
font-size: 50px;
color: #bab6a7;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#container {
position: absolute;
width: 100%;
top: 50%;
margin-top: -30px;
text-align: center;
}
#start {
background: #bab6a7;
border: none;
outline: 0;
padding: 20px 50px;
margin: 0;
font-family: 'Lucida Grande', Arial;
font-weight: bold;
font-size: 40px;
color: #e2e0d8;
border-radius: 5px;
cursor: pointer;
}
#start:hover {
background: #a6a294;
}
</style>
</head>
<body>
<div id="container">
<span id="label"></span>
<button id="start">BEGIN TESTS</button>
</div>
<script src='../src/howler.core.js'></script>
<script src='./tests.js'></script>
</body>
</html>
|