netproxy / tests / Netproxy.Testing / wwwroot / speedtest.html
Code · 28 lines · 767 bytes
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<!doctype html>
<html lang="en">
<head>
	<title>Just Testing</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta charset="utf-8" />

	<!-- nugetpackage netproxy -->
	<link href="css/netproxyspinner.css" rel="stylesheet" />
	<script src="scripts/macros.js?1" defer></script>
	<script src="scripts/netproxy.js?1" defer></script>

	<link href="Default.css" rel="stylesheet" />
	<link href="Ui.css" rel="stylesheet" />
	<script src="SpeedTest.js" defer></script>

</head>
<body>
	<img src="images/netproxyspinner.gif" id="netproxyspinner" />

	<div><span id="SpeedTest" class="ui-btn">Start Speed Test</span></div>

	<div><span id="LargeJson" class="ui-btn">Upload LargeJson</span></div>

	<div id="Output"></div>

</body>
</html>