dom/browser-element/mochitest/priority/file_NestedFramesOuter.html

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:f21475799f7e
1 <html>
2 <body>
3 <p>file_NestedFramesOuter.html</p>
4 <script>
5
6 addEventListener('load', function() {
7 setTimeout(createIframe, 0);
8 });
9
10 function createIframe()
11 {
12 var iframe = document.createElement('iframe');
13 iframe.setAttribute('mozbrowser', true);
14 iframe.src = location.hash.substr(1);
15 document.body.appendChild(iframe);
16 }
17
18 </script>
19 </body>
20 </html>

mercurial