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
67
68
69
70
71
72
73
74
75
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1182103 - Test EventSource scenarios with fetch interception</title>
<script type="text/javascript">
var prefix = "http://mochi.test:8888/tests/dom/serviceworkers/test/eventsource/";
function ok(aCondition, aMessage) {
parent.postMessage({status: "callback", data: "ok", condition: aCondition, message: aMessage}, "*");
}
function doUnregister() {
navigator.serviceWorker.getRegistration().then(swr => {
swr.unregister().then(function(result) {
ok(result, "Unregister should return true.");
parent.postMessage({status: "callback", data: "done"}, "*");
}, function(e) {
ok(false, "Unregistering the SW failed with " + e);
});
});
}
function doEventSource() {
var source = new EventSource(prefix + "eventsource.resource");
source.onmessage = function(e) {
source.onmessage = null;
source.close();
ok(true, "EventSource should work with synthetic responses");
doUnregister();
};
source.onerror = function(error) {
source.onmessage = null;
source.close();
ok(false, "Something went wrong");
};
}
function onLoad() {
if (!parent) {
dump("eventsource/eventsource_synthetic_response.html shouldn't be launched directly!");
}
window.addEventListener("message", function onMessage(e) {
if (e.data.status === "callback") {
switch(e.data.data) {
case "eventsource":
doEventSource();
window.removeEventListener("message", onMessage);
break;
default:
ok(false, "Something went wrong")
break
}
}
});
navigator.serviceWorker.ready.then(function() {
parent.postMessage({status: "callback", data: "ready"}, "*");
});
navigator.serviceWorker.addEventListener("message", function(event) {
parent.postMessage(event.data, "*");
});
}
</script>
</head>
<body onload="onLoad()">
</body>
</html>
|