summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/WorkerDebugger_frozen_iframe1.html
blob: 5919231215b829d7220db2caa06fd733ae16c2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <script>
      var worker = new Worker("WorkerDebugger_frozen_worker1.js");
      worker.onmessage = function () {
        parent.postMessage("ready", "*");
      };
    </script>
  </head>
  <body>
    This is page 1.
  </body>
<html>