text-emphasis-style-010.html (866B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Text Decoration Test - text-emphasis-style</title> 6 <link rel="author" title="Yu.Taguchi" href="mailto:taguchu@gmail.com"> 7 <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#text-emphasis-style-property" 8 title="3.1 Emphasis Mark Style: the text-emphasis-style property"> 9 <link rel="match" href="reference/text-emphasis-style-010-ref.html"> 10 <style> 11 div { 12 font: 1.5em/2 monospace; 13 } 14 span { 15 text-emphasis-style: filled sesame; 16 } 17 </style> 18 </head> 19 <body> 20 <p>Test passes if ﹅ is above every single character of "Text sample".</p> 21 <div><span>Text</span> <span>sample</span></div> 22 </body> 23 </html>