tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

text-decoration-propagation-1-quirks-ref.html (964B)


      1 <title>text-decoration</title>
      2 <style>
      3 *{
      4     text-decoration-skip-ink: none;
      5 }
      6 </style>
      7 <h1>text-decoration on a block</h1>
      8 
      9  <u>text directly in parent</u>
     10 
     11  <div><u>text in block</u></div>
     12 
     13  <div style="float:left; clear: left">text in float</div>
     14  <div style="clear:left"></div>
     15 
     16  <div style="display:inline-block">text in<br>inline-block</div><u>
     17  </u><div style="display:inline-table">text in<br>inline-table</div>
     18 
     19  <div style="height: 2em">
     20    <div style="position: absolute">text in abs-pos</div>
     21  </div>
     22 
     23 <h1>text-decoration on an inline</h1>
     24 
     25  <u>text directly in parent</u>
     26 
     27  <div><u>text in block</u></div>
     28 
     29  <div style="float:left; clear: left">text in float</div>
     30  <div style="clear:left"></div>
     31 
     32  <div style="display:inline-block">text in<br>inline-block</div><u>
     33  </u><div style="display:inline-table">text in<br>inline-table</div>
     34 
     35  <div style="height: 2em">
     36    <div style="position: absolute">text in abs-pos</div>
     37  </div>