summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/mochitest/bug589028_helper.html
blob: dc56ecbc3c73f148478135e1194b2c0c0e301bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
    <head>
        <script>
        function getMyOption() {
            return new Option();
        }
        function getCallersOption(caller) {
            return new caller.Option();
        }
        function getMyAudio() {
            return new Audio();
        }
        function getCallersAudio(caller) {
            return new caller.Audio();
        }
        function getMyImage() {
            return new Image();
        }
        function getCallersImage(caller) {
            return new caller.Image();
        }
        </script>
    </head>
    <body>
        the iframe
    </body>
</html>