summaryrefslogtreecommitdiffstats
path: root/dom/broadcastchannel/tests/iframe_mozbrowser.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/broadcastchannel/tests/iframe_mozbrowser.html')
-rw-r--r--dom/broadcastchannel/tests/iframe_mozbrowser.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/broadcastchannel/tests/iframe_mozbrowser.html b/dom/broadcastchannel/tests/iframe_mozbrowser.html
new file mode 100644
index 000000000..dbcf63d88
--- /dev/null
+++ b/dom/broadcastchannel/tests/iframe_mozbrowser.html
@@ -0,0 +1,15 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>MozBrowser iframe</title>
+</head>
+<body>
+ <script type="application/javascript;version=1.7">
+
+var bc = new BroadcastChannel('foobar');
+bc.postMessage('This is wrong!');
+
+ </script>
+</body>
+</html>