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 <style>
4 body {
5 height: 40px;
6 -moz-column-count: 2;
7 }
8 #x {
9 height: 20px;
10 }
11 #y {
12 height: 80px;
13 }
14 </style>
16 <script>
17 function boom()
18 {
19 document.getElementById("x").style.content = "'0'";
20 }
21 </script>
22 </head>
24 <body onload="boom();"><div id="x"><div id="y"></div></div></body>
26 </html>