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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 body {
6 margin: 0;
7 }
8 #main {
9 width: 500px;
10 height: 100px;
11 opacity: 0.999;
12 background: lime;
13 border: 1px solid black;
14 }
15 .censor {
16 position: absolute;
17 width: 1px;
18 height: 1px;
19 background: cyan;
20 }
21 </style>
22 </head>
23 <body>
24 <div id="main"></div>
25 <div class="censor" style="left:0; top:0;"></div>
26 <div class="censor" style="left:501px; top:0;"></div>
27 <div class="censor" style="left:0; top:101px;"></div>
28 <div class="censor" style="left:501px; top:101px;"></div>
29 </body>
30 </html>