|
1 <html><head> |
|
2 <title>More tests of propagation of text-decoration</title> |
|
3 </head> |
|
4 <body> |
|
5 <!-- t-d should not propagate to the content of a form control --> |
|
6 <form> |
|
7 <span style="text-decoration:underline">This text should be underlined.</span><br> |
|
8 <textarea rows="2" cols="40">This text should not be underlined.</textarea |
|
9 ><textarea rows="2" cols="40" style="text-decoration:line-through" |
|
10 >This text should be struck out.</textarea> |
|
11 <p style="text-decoration:underline">This text should also be underlined.</p> |
|
12 </form> |
|
13 <!-- t-d should propagate from parent elements to table-cells --> |
|
14 <div> |
|
15 <table> |
|
16 <tr> |
|
17 <td> |
|
18 <span style="text-decoration:underline"> |
|
19 <span style="text-decoration:overline"> |
|
20 <span style="text-decoration:line-through"> |
|
21 underlined, overlined, and struck out |
|
22 </span></span></span> |
|
23 </td> |
|
24 </tr> |
|
25 </table> |
|
26 </div> |
|
27 <!-- t-d on a float itself should apply --> |
|
28 <div> |
|
29 <p style="text-decoration:underline">This text should be underlined.</p> |
|
30 <p style="float:left; text-decoration:overline" |
|
31 >This text should be overlined (only).</p> |
|
32 </div> |
|
33 </body> |
|
34 </html> |