Bug 1839526 [wpt PR 40658] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / text-decoration / text-decoration-propagation-1-quirks.html
blob18b0e893ab1a6ab0b30f8821c8352b1f0e72ead8
1 <title>text-decoration</title>
2 <style>
3 *{
4 text-decoration-skip-ink: none;
6 </style>
7 <h1>text-decoration on a block</h1>
9 <div style="text-decoration: underline">
11 text directly in parent
13 <div>text in block</div>
15 <div style="float:left; clear: left">text in float</div>
16 <div style="clear:left"></div>
18 <div style="display:inline-block">text in<br>inline-block</div>
19 <div style="display:inline-table">text in<br>inline-table</div>
21 <div style="height: 2em">
22 <div style="position: absolute">text in abs-pos</div>
23 </div>
25 </div>
27 <h1>text-decoration on an inline</h1>
29 <div style="text-decoration: underline; display: inline">
31 text directly in parent
33 <div>text in block</div>
35 <div style="float:left; clear: left">text in float</div>
36 <div style="clear:left"></div>
38 <div style="display:inline-block">text in<br>inline-block</div>
39 <div style="display:inline-table">text in<br>inline-table</div>
41 <div style="height: 2em">
42 <div style="position: absolute">text in abs-pos</div>
43 </div>
45 </div>