-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
68 lines (57 loc) · 1.49 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
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
67
68
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Optiscroll Tests</title>
<link rel="stylesheet" href="resources/qunit.css">
<link rel="stylesheet" href="../dist/optiscroll.css">
<script src="../dist/optiscroll.js"></script>
<style type="text/css">
#qunit-fixture {
position: fixed;
top: auto;
left: auto;
right: 5px;
bottom: 5px;
width: auto;
height: auto;
}
.optiscroll {
width: 100px;
height: 100px;
}
.optiscroll-content .test {
width: 200px;
height: 200px;
background: #157E57;
}
.test-child {
position: absolute;
top: 100px;
left: 100px;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
background: #1E1;
}
</style>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<div id="os" class="optiscroll">
<div class="test"><b class="test-child"></b></div>
<!-- Comment node -->
<script type="text/javascript">// node </script>
</div>
</div>
<script src="resources/jquery.min.js"></script>
<script src="resources/syn.js"></script>
<script src="resources/qunit.js"></script>
<script>var os, os2;</script>
<script src="test.base.js"></script>
<script src="test.api.js"></script>
<script src="test.scrollbars.js"></script>
<script src="test.events.js"></script>
</body>
</html>