tenfourfox/js/xpconnect/tests/mochitest/bug589028_helper.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

28 lines
617 B
HTML

<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>