summaryrefslogtreecommitdiffstats
path: root/dom/base/test/iframe_postMessages.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/iframe_postMessages.html')
-rw-r--r--dom/base/test/iframe_postMessages.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/base/test/iframe_postMessages.html b/dom/base/test/iframe_postMessages.html
new file mode 100644
index 0000000000..0b07456eb8
--- /dev/null
+++ b/dom/base/test/iframe_postMessages.html
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML>
+<html>
+<body>
+<script>
+onmessage = function(e) {
+ parent.postMessage(e.data, '*', e.ports);
+}
+
+onmessageerror = function() {
+ parent.postMessage("error", '*');
+}
+</script>
+</body>
+</html>