summaryrefslogtreecommitdiff
path: root/browser/base/content/test/social/social_window.html
blob: 1e95ca0eef8aee07a6f3c3f0cb4740827c1b7756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
  <head>
    <meta charset="utf-8">
    <script>
      function pingWorker() {
        var port = navigator.mozSocial.getWorker().port;
        port.postMessage({topic: "service-window-message",
                          location: window.location.href,
                          result: "ok"
                         });
      }
    </script>
  </head>
  <body onload="pingWorker();">
    <p>This is a test social service window.</p>
  </body>
</html>