Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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>