text-emphasis-position-under-right-001.xht (1655B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <title>CSS Test: text-emphasis-position - under right - basic cases</title> 6 <link rel="author" title="Makoto Kikuchi" href="mailto:kikuchi@est.co.jp" /> 7 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com" /> 8 <link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property" /> 9 <link rel="match" href="reference/text-emphasis-position-under-right-001-ref.xht"/> 10 <meta name="flags" content="ahem" /> 11 <meta name="assert" content="This property describes where emphasis marks are drawn at." /> 12 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 13 <style type="text/css"><![CDATA[ 14 .test 15 { 16 text-emphasis-style: filled circle; 17 text-emphasis-position: under right; 18 } 19 /* the CSS below is not part of the test */ 20 .parent 21 { 22 background: yellow; 23 border: solid 1px gray; 24 color: blue; 25 font: 20px/1em ahem; 26 width: 6em; 27 padding-top: 1em; 28 } 29 ruby { 30 ruby-position: under; 31 } 32 ]]></style> 33 </head> 34 <body> 35 <div> 36 <p>Test passes if a pair of upper and lower block in the square box is identical.</p> 37 <p>horizontal</p> 38 <div class="parent"> 39 <div><span class="test">abc</span> de<br /><br /></div> 40 </div> 41 <br /> 42 <div class="parent"> 43 <div> 44 <ruby><rb>a</rb><rt>●</rt><rb>b</rb><rt>●</rt><rb>c</rb><rt>●</rt></ruby> 45 de<br /> 46 <br /> 47 </div> 48 </div> 49 </div> 50 </body> 51 </html>