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 <title>text-decoration</title>
4 <h1>text-decoration on a block</h1>
6 <div style="text-decoration: underline">
8 text directly in parent
10 <div>text in block</div>
12 <div style="float:left; clear: left">text in float</div>
13 <div style="clear:left"></div>
15 <div style="display:inline-block">text in<br>inline-block</div>
16 <div style="display:inline-table">text in<br>inline-table</div>
18 <div style="height: 2em">
19 <div style="position: absolute">text in abs-pos</div>
20 </div>
22 </div>
24 <h1>text-decoration on an inline</h1>
26 <div style="text-decoration: underline; display: inline">
28 text directly in parent
30 <div>text in block</div>
32 <div style="float:left; clear: left">text in float</div>
33 <div style="clear:left"></div>
35 <div style="display:inline-block">text in<br>inline-block</div>
36 <div style="display:inline-table">text in<br>inline-table</div>
38 <div style="height: 2em">
39 <div style="position: absolute">text in abs-pos</div>
40 </div>
42 </div>