Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/publicdomain/zero/1.0/
4 */
6 window.addEventListener("load", function () {
7 var ws1 = new WebSocket("ws://0.0.0.0:81");
8 ws1.onopen = function() {
9 ws1.send("test 1");
10 ws1.close();
11 };
13 var ws2 = new window.frames[0].WebSocket("ws://0.0.0.0:82");
14 ws2.onopen = function() {
15 ws2.send("test 2");
16 ws2.close();
17 };
18 }, false);