no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / text-decoration / text-decoration-propagation-1-standards.html
blobff37d5db41bdb26599e354bdfef10722612215c7
1 <!DOCTYPE html>
2 <title>text-decoration</title>
3 <style>
4 *{
5 text-decoration-skip-ink: none;
7 </style>
8 <h1>text-decoration on a block</h1>
10 <div style="text-decoration: underline">
12 text directly in parent
14 <div>text in block</div>
16 <div style="float:left; clear: left">text in float</div>
17 <div style="clear:left"></div>
19 <div style="display:inline-block">text in<br>inline-block</div>
20 <div style="display:inline-table">text in<br>inline-table</div>
22 <div style="height: 2em">
23 <div style="position: absolute">text in abs-pos</div>
24 </div>
26 </div>
28 <h1>text-decoration on an inline</h1>
30 <div style="text-decoration: underline; display: inline">
32 text directly in parent
34 <div>text in block</div>
36 <div style="float:left; clear: left">text in float</div>
37 <div style="clear:left"></div>
39 <div style="display:inline-block">text in<br>inline-block</div>
40 <div style="display:inline-table">text in<br>inline-table</div>
42 <div style="height: 2em">
43 <div style="position: absolute">text in abs-pos</div>
44 </div>
46 </div>