summaryrefslogtreecommitdiffstats
path: root/dom/network/tests/file_udpsocket_iframe.html
blob: d48e03ee2b09b791863384a53932f181e22163b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
  <title>Test UDPSocket BFCache</title>
</head>
<body>
<script type="application/javascript">
'use strict';
window.addEventListener('load', function() {
  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);
  });
}, {once: true});
</script>
</body>
</html>