text-combine-emphasis-notref.html (654B)
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 <style> 9 .foo { 10 font-size: 100px; 11 writing-mode: vertical-lr; 12 text-combine-upright: all; 13 } 14 </style> 15 </head> 16 <body> 17 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. 18 <p class="foo">X</p> 19 </body> 20 </html>