text-emphasis-position-over-right-001.xht (1629B)
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 - over 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-over-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: over 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 } 28 ruby { 29 ruby-position: over; 30 } 31 ]]></style> 32 </head> 33 <body> 34 <div> 35 <p>Test passes if a pair of upper and lower block in the square box is identical.</p> 36 <p>horizontal</p> 37 <div class="parent"> 38 <div><span class="test">abc</span> de<br /><br /></div> 39 </div> 40 <br /> 41 <div class="parent"> 42 <div> 43 <ruby><rb>a</rb><rt>●</rt><rb>b</rb><rt>●</rt><rb>c</rb><rt>●</rt></ruby> 44 de<br /> 45 <br /> 46 </div> 47 </div> 48 </div> 49 </body> 50 </html>