This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.html
67 lines (66 loc) · 1.71 KB
/
test.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
<html>
<head>
<script src="libs/md5/md5.js"></script>
<script src="src/ChunkReceiver.js"></script>
<script src="src/ChunkSender.js"></script>
<script src="src/Connection.js"></script>
<script src="src/ConnectionConfig.js"></script>
<script src="src/ContentType.js"></script>
<script src="src/digestAuthentication.js"></script>
<script src="src/Events.js"></script>
<script src="src/Exceptions.js"></script>
<script src="src/FileParams.js"></script>
<script src="src/Message.js"></script>
<script src="src/parser.js"></script>
<script src="src/Sdp.js"></script>
<script src="src/Session.js"></script>
<script src="src/Status.js"></script>
<script src="src/Uri.js"></script>
<script src="src/util.js"></script>
<script src="src/WSWrapper.js"></script>
<script src="test.js"></script>
<style>
.dropbox {
width: 425px;
height: 300px;
border: 2px solid #DDD;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
background-color: #FEFFEC;
text-align: center;
color: #BBB;
font-size: 2em;
font-family: Arial, sans-serif;
}
.droplabel {
position: relative;
top: 40%;
}
</style>
</head>
<body onload="onload()">
<table>
<tr>
<td>
<div id="alice-dropbox" class="dropbox">
<span id="alice-droplabel" class="droplabel">Alice's file drop</span>
</div>
</td>
<td>
<div id="bob-dropbox" class="dropbox">
<span id="bob-droplabel" class="droplabel">Bob's file drop</span>
</div>
</td>
</tr>
<tr>
<td id="alice-details"></td><td id="bob-details"></td>
</tr>
<tr>
<td id="alice-progress"></td><td id="bob-progress"></td>
</tr>
<tr>
<td id="alice-result"></td><td id="bob-result"></td>
</tr>
</table>
</body>
</html>