tor-browser

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

text-emphasis-style-016.html (1084B)


      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="Fuyuko Ikeguchi" href="mailto:fuyuko.ikeguchi@gmail.com">
      7                <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#text-emphasis-style-property">
      8                <meta name="assert" content="Test checks that 'text-emphasis-style: dot' renders as 'filled dot'.">
      9                <link rel="match" href="reference/text-emphasis-style-002-ref.html">
     10                <style>
     11                        div {
     12                                font: 1.5em/2 monospace;
     13                        }
     14                        .test {
     15                                text-emphasis-style: dot;
     16                        }
     17                </style>
     18        </head>
     19        <body>
     20                <p>Test passes if "filled dot" is above every single character of "Text sample".</p>
     21                <div><span class="test">Text</span> <span class="test">sample</span></div>
     22        </body>
     23 </html>