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>
3 <head>
4 <script>
5 function boom()
6 {
7 document.getElementById("i1").style.counterIncrement = "chicken";
8 document.getElementById("i3").style.counterIncrement = "chicken";
9 }
10 </script>
11 </head>
13 <body onload="boom();" style="overflow: auto; display: -moz-grid-line;">
14 <img id="i1" style="width: 30px; float: right;">
15 <img id="i2" style="margin: 0 100%; padding: 0 60px;">
16 <img id="i3" style="margin: 100% 0; float: right;">
17 </body>
19 </html>