mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
20 lines
357 B
HTML
20 lines
357 B
HTML
<html>
|
|
<body>
|
|
<p>file_NestedFramesOuter.html</p>
|
|
<script>
|
|
|
|
addEventListener('load', function() {
|
|
setTimeout(createIframe, 0);
|
|
});
|
|
|
|
function createIframe()
|
|
{
|
|
var iframe = document.createElement('iframe');
|
|
iframe.setAttribute('mozbrowser', true);
|
|
iframe.src = location.hash.substr(1);
|
|
document.body.appendChild(iframe);
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|