mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
23 lines
579 B
HTML
23 lines
579 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test UDPSocket BFCache</title>
|
|
</head>
|
|
<body>
|
|
<script type="application/javascript;version=1.8">
|
|
'use strict';
|
|
window.addEventListener('load', function onload() {
|
|
window.removeEventListener('load', onload);
|
|
let remotePort = parseInt(window.location.search.substring(1), 10);
|
|
let socket = new UDPSocket();
|
|
socket.addEventListener('message', function () {
|
|
socket.send('fail', '127.0.0.1', remotePort);
|
|
});
|
|
|
|
socket.opened.then(function() {
|
|
socket.send('ready', '127.0.0.1', remotePort);
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|