tor-browser

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

text-combine-emphasis.html (752B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <title>CSS Text: U+FFFC OBJECT REPLACEMENT CHARACTER presence</title>
      6 <link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com">
      7 <link rel="help" href="https://drafts.csswg.org/css-text-3/">
      8 <link rel="mismatch" href="reference/text-combine-emphasis-notref.html">
      9 <style>
     10 .foo {
     11  font-size: 100px;
     12  writing-mode: vertical-lr;
     13  text-combine-upright: all;
     14  text-emphasis: filled;
     15 }
     16 </style>
     17 </head>
     18 <body>
     19 This test makes sure that, when <code>text-combine-upright</code> and <code>text-emphasis</code> are used together, the emphasis mark doesn't disappear. The test passes if you see an emphasis mark to the right of the letter X below.
     20 <p class="foo">X</p>
     21 </body>
     22 </html>