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 <!-- Any copyright is dedicated to the Public Domain.
3 - http://creativecommons.org/publicdomain/zero/1.0/ -->
4 <html>
5 <head>
6 <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
7 <style>
8 #scroll {
9 overflow: hidden;
10 height: 200px;
11 line-height: 1;
12 }
13 #contain {
14 -moz-column-count: 2;
15 column-count: 2;
16 -moz-column-rule: 1px solid black;
17 column-rule: 1px solid black;
18 height: 200px;
19 width: 200px;
20 }
21 #fill {
22 height: 390px;
23 background: blue;
24 }
25 #sticky {
26 position: relative;
27 left: 190px;
28 width: 10px;
29 height: 10px;
30 background: black;
31 }
32 </style>
33 </head>
34 <body>
35 <div id="scroll">
36 <div id="contain">
37 <div id="sticky"></div>
38 <div id="fill"></div>
39 </div>
40 </div>
41 </body>
42 </html>