summaryrefslogtreecommitdiffstats
path: root/toolkit/components/remotepagemanager/tests/browser/testremotepagemanager2.html
blob: 70784b5011f3843cd42b31839283f92a2dbf79c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<!-- A second page to test that RemotePages works with multiple urls -->
<html>
<head>
<script type="text/javascript">
/* global RPMAddMessageListener, RPMSendAsyncMessage */

RPMAddMessageListener("Ping", function(message) {
  RPMSendAsyncMessage("Pong", {
    str: message.data.str,
    counter: message.data.counter + 1,
  });
});

</script>
</head>
<body>
</body>
</html>