aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/data/test-trusted-document.html
blob: e9f9169066bcfd38a07867b97fd5429bd6fada95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<html>
<head>
    <meta charset="UTF-8">
    <title>Worker test</title>
</head>
<body>
  <p id="paragraph">Lorem ipsum dolor sit amet.</p>
  <script>
    addon.port.on('addon-to-document', function (arg) {
      addon.port.emit('document-to-addon', arg);
    });
  </script>
</body>
</html>