File: index.html

package info (click to toggle)
ruby-async-http 0.59.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 572 kB
  • sloc: ruby: 4,164; javascript: 40; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
	<head>
		<title>Streaming Fetch</title>
	</head>
	<body>
		<h1>Streams</h1>
		
		<button id="stopButton">Start</button>
		
		<h2>Sent</h2>
		
		<ul id="sent">
		</ul>
		
		<h2>Received</h2>
		
		<ul id="received">
		</ul>
		
		<script src="stream.js"></script>
	</body>
</html>