Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <title>text-decoration</title> |
michael@0 | 3 | |
michael@0 | 4 | <h1>text-decoration on a block</h1> |
michael@0 | 5 | |
michael@0 | 6 | <div style="text-decoration: underline"> |
michael@0 | 7 | |
michael@0 | 8 | text directly in parent |
michael@0 | 9 | |
michael@0 | 10 | <div>text in block</div> |
michael@0 | 11 | |
michael@0 | 12 | <div style="float:left; clear: left">text in float</div> |
michael@0 | 13 | <div style="clear:left"></div> |
michael@0 | 14 | |
michael@0 | 15 | <div style="display:inline-block">text in<br>inline-block</div> |
michael@0 | 16 | <div style="display:inline-table">text in<br>inline-table</div> |
michael@0 | 17 | |
michael@0 | 18 | <div style="height: 2em"> |
michael@0 | 19 | <div style="position: absolute">text in abs-pos</div> |
michael@0 | 20 | </div> |
michael@0 | 21 | |
michael@0 | 22 | </div> |
michael@0 | 23 | |
michael@0 | 24 | <h1>text-decoration on an inline</h1> |
michael@0 | 25 | |
michael@0 | 26 | <div style="text-decoration: underline; display: inline"> |
michael@0 | 27 | |
michael@0 | 28 | text directly in parent |
michael@0 | 29 | |
michael@0 | 30 | <div>text in block</div> |
michael@0 | 31 | |
michael@0 | 32 | <div style="float:left; clear: left">text in float</div> |
michael@0 | 33 | <div style="clear:left"></div> |
michael@0 | 34 | |
michael@0 | 35 | <div style="display:inline-block">text in<br>inline-block</div> |
michael@0 | 36 | <div style="display:inline-table">text in<br>inline-table</div> |
michael@0 | 37 | |
michael@0 | 38 | <div style="height: 2em"> |
michael@0 | 39 | <div style="position: absolute">text in abs-pos</div> |
michael@0 | 40 | </div> |
michael@0 | 41 | |
michael@0 | 42 | </div> |
michael@0 | 43 |