-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 1000 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1><code>EventPort</code> Javascript implementation.</h1>
<desc>
This project is a basic js implementation of an EventPort API loosely based on
<a href="https://github.com/WICG/input-for-workers/pull/8">https://github.com/WICG/input-for-workers/pull/8</a><br>
This is only a testing project meant to better see how such an API should be shaped.<br>
Do not use in production, as it hasn't been tested, and probably won't be.<br>
<br>
Currently doesn't work between cross-origin documents.
</desc>
<h4>Test pages:</h4>
<ul>
<li><a href="test_worker">Control an OffscreenCanvas from a deep Worker using the mouse.</a></li>
<li><a href="test_frame">Control an canvas in an iframe or a popup window using the mouse.</a></li>
<li><a href="test_audioWorklet">Control an AudioWorkletProcessor using the mouse.</a></li>
</ul>
</body>
</html>