summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/blank.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/workers/test/blank.html')
-rw-r--r--dom/workers/test/blank.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/workers/test/blank.html b/dom/workers/test/blank.html
new file mode 100644
index 0000000000..fcbbdb17e9
--- /dev/null
+++ b/dom/workers/test/blank.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>Blank</title>
+ </head>
+ <body onload="notifyOnload();">
+ <script type="application/javascript">
+ function notifyOnload() {
+ opener.postMessage({event: 'load'}, '*');
+ }
+ </script>
+ </body>
+</html>