tor-browser

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

text-emphasis-style-007.html (887B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Text Decoration Test - text-emphasis</title>
      6    <link rel="author" title="TestTWF Tokyo Meetup (Unofficial)" href="mailto:tomoyuki.labs@gmail.com">
      7    <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#text-emphasis-style-property" title="3.1. Emphasis Mark Style: the ‘text-emphasis-style’ property">
      8    <link rel="match" href="reference/text-emphasis-style-007.html">
      9    <meta name="assert" content="Test checks 'text-emphasis-style: filled circle'">
     10    <style>
     11        div {
     12            font: 1.5em/2 monospace;
     13        }
     14        span {
     15            text-emphasis-style: filled circle;
     16        }
     17    </style>
     18  </head>
     19  <body>
     20    <p>Test passes if a filled circle is above every single character of "Text Sample".</p>
     21    <div><span>Text</span> <span>sample</span></div>
     22  </body>
     23 </html>