tor-browser

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

text-decoration-line.html (3025B)


      1 <html>
      2 <head>
      3    <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-line-property">
      4    <link rel="match" href="reference/text-decoration-line-ref.html">
      5    <style>
      6            .none { text-decoration: none; }
      7            .underline { text-decoration: underline; }
      8            .overline { text-decoration: overline; }
      9            .line-through { text-decoration: line-through; }
     10            .all-decorations { text-decoration: underline overline line-through; }
     11    </style>
     12 </head>
     13 <body>
     14    <div>Each line of this test should match its style description (<i>text-decoration-line</i> resets <i>text-decoration</i>, except when the latter is set as <i>important</i>):</div><br/>
     15    <div style="text-decoration-line: underline;">This text is underlined <span class="none">(also inside span).</span></div><br/>
     16    <div style="text-decoration-line: overline;">This text is overlined <span class="none">(also inside span).</span></div><br/>
     17    <div style="text-decoration-line: line-through;">This text has a line-through <span class="none">(also inside span).</span></div><br/>
     18    <div class="underline" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
     19    <div class="underline" style="text-decoration-line: underline;">This text is underlined.</div><br/>
     20    <div class="overline" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
     21    <div class="overline" style="text-decoration-line: overline;">This text is overlined.</div><br/>
     22    <div class="line-through" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
     23    <div class="line-through" style="text-decoration-line: line-through;">This text has a line-through.</div><br/>
     24    <div class="all-decorations" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
     25    <div class="all-decorations" style="text-decoration-line: underline overline line-through;">This text is underlined, overlined and has a line-through.</div><br/>
     26    <div style="text-decoration-line: underline; text-decoration: none !important;">This text contains no decorations.</div><br/>
     27    <div style="text-decoration-line: underline; text-decoration: overline !important;">This text is overlined.</div><br/>
     28    <div style="text-decoration-line: underline !important; text-decoration: overline !important;">This text is overlined.</div><br/>
     29    <div style="text-decoration: overline !important; text-decoration-line: underline !important;">This text is underlined.</div>
     30    <div style="text-decoration-line: blink blink;">This text contains no decorations.</div><br/>
     31    <div style="text-decoration-line: blink underline blink;">This text contains no decorations.</div><br/>
     32    <div style="text-decoration-line: blink underline overline blink;">This text contains no decorations.</div><br/>
     33    <div style="text-decoration-line: blink underline overline line-through blink;">This text contains no decorations.</div><br/>
     34 </body>
     35 </html>