layout/reftests/text-decoration/underline-block-propagation-2-quirks.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

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

mercurial