layout/reftests/text-decoration/text-decoration-propagation-1-standards.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.

     1 <!DOCTYPE html>
     2 <title>text-decoration</title>
     4 <h1>text-decoration on a block</h1>
     6 <div style="text-decoration: underline">
     8   text directly in parent
    10   <div>text in block</div>
    12   <div style="float:left; clear: left">text in float</div>
    13   <div style="clear:left"></div>
    15   <div style="display:inline-block">text in<br>inline-block</div>
    16   <div style="display:inline-table">text in<br>inline-table</div>
    18   <div style="height: 2em">
    19     <div style="position: absolute">text in abs-pos</div>
    20   </div>
    22 </div>
    24 <h1>text-decoration on an inline</h1>
    26 <div style="text-decoration: underline; display: inline">
    28   text directly in parent
    30   <div>text in block</div>
    32   <div style="float:left; clear: left">text in float</div>
    33   <div style="clear:left"></div>
    35   <div style="display:inline-block">text in<br>inline-block</div>
    36   <div style="display:inline-table">text in<br>inline-table</div>
    38   <div style="height: 2em">
    39     <div style="position: absolute">text in abs-pos</div>
    40   </div>
    42 </div>

mercurial