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 <!-- Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ -->
3 <!-- This testcase is the same as the -1a version, but with -moz-inline-box. -->
4 <html>
5 <head>
6 <style>
7 .box { display: -moz-inline-box }
8 .relpos_parent {
9 position: relative;
10 width: 100px;
11 height: 100px;
12 background: lightblue;
13 }
14 .abspos_child {
15 position: absolute;
16 left: 30px;
17 bottom: 10px;
18 width: 20px;
19 height: 20px;
20 background: purple;
21 }
22 </style>
23 </head>
24 <body>
25 <div class="box relpos_parent">
26 <div class="abspos_child"></div>
27 </div>
28 </body>
29 </html>