Backed out changeset 713114c0331a (bug 1938707) by developer request CLOSED TREE
[gecko.git] / js / xpconnect / tests / mochitest / bug589028_helper.html
blobdc56ecbc3c73f148478135e1194b2c0c0e301bd9
1 <html>
2 <head>
3 <script>
4 function getMyOption() {
5 return new Option();
7 function getCallersOption(caller) {
8 return new caller.Option();
10 function getMyAudio() {
11 return new Audio();
13 function getCallersAudio(caller) {
14 return new caller.Audio();
16 function getMyImage() {
17 return new Image();
19 function getCallersImage(caller) {
20 return new caller.Image();
22 </script>
23 </head>
24 <body>
25 the iframe
26 </body>
27 </html>