tor-browser

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

text-emphasis-style-021.html (1101B)


      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="Shinsuke Matsuki" href="mailto:shinsk@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-021-ref.html">
      9                <meta name="assert" content="This test checks 'text-emphasis-style:string'.">
     10                <style>
     11                    div {
     12                        font: 1.5em/2 monospace;
     13                    }
     14                    span {
     15                        text-emphasis-style: '^';
     16                    }
     17                </style>
     18        </head>
     19        <body>
     20                <p>Test passes if "^" is above every single character of "Text sample".</p>
     21                <div>
     22                        <span>Text</span> <span>sample</span>
     23                </div>
     24        </body>
     25 </html>