text-emphasis-style-008.html (753B)
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="TestTWF Tokyo Meetup (Unofficial)" href="mailto:ymdsmn@gmail.com"> 7 <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#text-emphasis-style-property"> 8 <link rel="match" href="reference/text-emphasis-style-008-ref.html"> 9 <meta name="assert" content="Test checks that 'text-emphasis-style: filled double-circle'."> 10 <style> 11 span { 12 text-emphasis-style: filled double-circle; 13 } 14 </style> 15 </head> 16 <body> 17 <p>Test passes if "◉" is above every single character of "Text sample"</p> 18 <div style="font: 1.5em/2 monospace"> 19 <span>Text sample</span>. 20 </div> 21 </body> 22 </html>