summaryrefslogtreecommitdiffstats
path: root/dom/broadcastchannel/tests/test_broadcastchannel_close2.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/broadcastchannel/tests/test_broadcastchannel_close2.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/broadcastchannel/tests/test_broadcastchannel_close2.html')
-rw-r--r--dom/broadcastchannel/tests/test_broadcastchannel_close2.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/dom/broadcastchannel/tests/test_broadcastchannel_close2.html b/dom/broadcastchannel/tests/test_broadcastchannel_close2.html
new file mode 100644
index 000000000..a8a748c46
--- /dev/null
+++ b/dom/broadcastchannel/tests/test_broadcastchannel_close2.html
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>Test for BroadcastChannel</title>
+ <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+</head>
+<body>
+
+<div id="content"></div>
+
+<script type="application/javascript">
+
+function runTest() {
+ var c1 = new BroadcastChannel('foo');
+ var c2 = new BroadcastChannel('foo');
+
+ var status = [];
+ c2.onmessage = function(e) {
+ status.push(e.data);
+ if (status.length == 2) {
+ is (status[0], 'first', "First message has been received");
+ is (status[1], 'second', "Second message has been received");
+ SimpleTest.finish();
+ }
+
+ c2.close();
+ }
+
+ c1.postMessage('first');
+ c1.postMessage('second');
+}
+
+SimpleTest.waitForExplicitFinish();
+runTest();
+
+</script>
+</body>
+</html>