summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/priority/file_NestedFramesOuter.html
blob: e4378935f2da22dcb8954feea275d64ac905bac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>