Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html><head>
2 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
3 <script>
4 function load() {
5 function next() {
6 if (count < 5)
7 iframe.src = 'data:text/html,iframe ' + (++count);
8 }
10 var count = 0;
11 var iframe = document.createElement('iframe');
12 iframe.onload = function () { setTimeout(next, 0) };
13 document.body.appendChild(iframe);
15 setTimeout(next, 0);
16 }
17 </script>
18 </head>
20 <body onload="load()">
21 Testcase
22 </body>
23 </html>