2012-07-23 12:59:37 -07:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
var iframe = document.createElement('iframe');
|
2013-02-26 18:26:10 -08:00
|
|
|
iframe.setAttribute("mozbrowser", "true");
|
2012-07-23 12:59:37 -07:00
|
|
|
|
|
|
|
iframe.addEventListener('mozbrowsershowmodalprompt', function(e) {
|
|
|
|
if (e.detail.message == 'child:ready') {
|
|
|
|
setTimeout(function() {
|
|
|
|
iframe.setVisible(false);
|
|
|
|
iframe.setVisible(true);
|
|
|
|
setTimeout(function() {
|
|
|
|
alert('parent:finish');
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Pass the message up to our parent.
|
|
|
|
alert(e.detail.message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
document.body.appendChild(iframe);
|
|
|
|
iframe.src = 'file_browserElement_SetVisibleFrames_Inner.html?child';
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|