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>
2 <head>
3 <title>Testcase bug 363448 - Crash [@ nsCachedStyleData::GetStyleData] with testcase, using floating and absolutely positioned iframes</title>
4 </head>
5 <body>
6 This page should not crash Mozilla
7 <div style="width:300px;">
8 <span id="b">
9 <iframe style="float: left;" id="a"></iframe>
10 <wbr>text
11 <iframe id="c" style="position: absolute;"></iframe>
12 </span>
13 </div>
15 <script>
16 function stirdom(){
17 document.body.appendChild(document.getElementById('a'));
18 document.getElementById('b').appendChild(document.getElementById('c'));
19 }
20 setTimeout(stirdom,200);
21 </script>
22 </body>
23 </html>