summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/WorkerDebugger_frozen_window1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/workers/test/WorkerDebugger_frozen_window1.html')
-rw-r--r--dom/workers/test/WorkerDebugger_frozen_window1.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/workers/test/WorkerDebugger_frozen_window1.html b/dom/workers/test/WorkerDebugger_frozen_window1.html
new file mode 100644
index 0000000000..05d65bbb54
--- /dev/null
+++ b/dom/workers/test/WorkerDebugger_frozen_window1.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <script>
+ var worker = new Worker("WorkerDebugger_frozen_worker1.js");
+ worker.onmessage = function () {
+ opener.postMessage("ready", "*");
+ };
+ </script>
+ </head>
+ <body>
+ This is page 1.
+ </body>
+<html>