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 <title>text-decoration</title>
3 <h1>text-decoration on a block</h1>
5 <div style="text-decoration: underline">
7 text directly in parent
9 <div>text in block</div>
11 <div style="float:left; clear: left">text in float</div>
12 <div style="clear:left"></div>
14 <div style="display:inline-block">text in<br>inline-block</div>
15 <div style="display:inline-table">text in<br>inline-table</div>
17 <div style="height: 2em">
18 <div style="position: absolute">text in abs-pos</div>
19 </div>
21 </div>
23 <h1>text-decoration on an inline</h1>
25 <div style="text-decoration: underline; display: inline">
27 text directly in parent
29 <div>text in block</div>
31 <div style="float:left; clear: left">text in float</div>
32 <div style="clear:left"></div>
34 <div style="display:inline-block">text in<br>inline-block</div>
35 <div style="display:inline-table">text in<br>inline-table</div>
37 <div style="height: 2em">
38 <div style="position: absolute">text in abs-pos</div>
39 </div>
41 </div>