-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
38 lines (38 loc) · 1.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Mocha</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mocha.css" />
<style>
#banner {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 20px 60px;
}
#banner h1 {
font-size: 1.2em;
font-weight: 200;
}
#banner p {
font-size: 12px;
}
#mocha {
margin-top: 0;
}
</style>
</head>
<body>
<div id="banner">
<h1>This is the <a href="https://github.com/jareware/css-ns"><code>css-ns</code></a> test runner.</h1>
<p>If you see something's broken on your browser, <a href="https://github.com/jareware/css-ns/issues">filing an issue</a> is much appreciated.</p>
</div>
<div id="mocha"></div>
<script src="mocha.js"></script>
<script>mocha.setup('bdd');</script>
<script src="suite.js"></script>
<script>
mocha.run();
</script>
</body>
</html>