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 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script type="text/javascript">
6 function boom()
7 {
8 document.getElementById("x").style.padding = "67108863pc";
9 setTimeout(boom2, 0);
10 }
12 function boom2()
13 {
14 document.body.removeChild(document.getElementById("colset"));
15 document.documentElement.removeAttribute("class");
16 }
18 </script>
19 </head>
21 <body onload="boom();"> <div style="-moz-column-count: 2;" id="colset"><div style="height: 1px;"><div id="x"><div style="width: 1px;">A B C D</div></div></div></div> </body>
23 </html>