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 <head>
3 <style>
4 .parent {
5 width: 200px;
6 height: 200px;
7 overflow: hidden;
8 border-radius: 0px 0px 20px 0px;
10 position: absolute;
11 z-index: 0;
12 background-color: #00ff00;
13 }
15 .child {
16 width: 300px;
17 height: 300px;
18 margin-left: 100px;
19 background-color: #ffff00;
20 }
22 body {
23 margin: 0;
24 }
26 </style>
27 </head>
28 <body>
29 <div class="parent">
30 <div class="child"></div>
31 </div>
32 </body>