1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
addMessageListener("Ping", function(message) {
sendAsyncMessage("Pong", {
str: message.data.str,
counter: message.data.counter + 1
});
});
addMessageListener("Ping2", function(message) {
sendAsyncMessage("Pong2", message.data);
});
function neverCalled() {
sendAsyncMessage("Pong3");
}
addMessageListener("Pong3", neverCalled);
removeMessageListener("Pong3", neverCalled);
function testData(data) {
var response = {
result: true,
status: "All data correctly received"
}
function compare(prop, expected) {
if (uneval(data[prop]) == uneval(expected))
return;
if (response.result)
response.status = "";
response.result = false;
response.status += "Property " + prop + " should have been " + expected + " but was " + data[prop] + "\n";
}
compare("integer", 45);
compare("real", 45.78);
compare("str", "foobar");
compare("array", [1, 2, 3, 5, 27]);
return response;
}
addMessageListener("SendData", function(message) {
sendAsyncMessage("ReceivedData", testData(message.data));
});
addMessageListener("SendData2", function(message) {
sendAsyncMessage("ReceivedData2", testData(message.data.data));
});
var cookie = "nom";
addMessageListener("SetCookie", function(message) {
cookie = message.data.value;
});
addMessageListener("GetCookie", function(message) {
sendAsyncMessage("Cookie", { value: cookie });
});
</script>
</head>
<body>
</body>
</html>
|