text-baseline-srl-008.xht (1505B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Writing Modes Test: text baseline alignment - alphabetical alignment with vertical layout</title> 5 <link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.com" /> 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2015-12-05 --> 7 <link rel="help" title="4.2. Text Baseline" href="http://www.w3.org/TR/css-writing-modes-4/#text-baselines" /> 8 <link rel="match" href="text-baseline-vrl-006-ref.xht" /> 9 <meta name="assert" content="When 'writing-mode' is 'sideways-rl', then the alphabetic baseline is used as the dominant baseline." /> 10 <meta name="flags" content="ahem" /> 11 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 12 <style type="text/css"><![CDATA[ 13 div#srl 14 { 15 color: fuchsia; 16 font: 60px/1.5 Ahem; /* computes to 60px/90px */ 17 writing-mode: sideways-rl; 18 } 19 20 span#fuchsia120 21 { 22 font-size: 2em; /* computes to 120px */ 23 } 24 25 span#fuchsia30 26 { 27 font-size: 0.5em; /* computes to 30px */ 28 } 29 ]]></style> 30 31 </head> 32 33 <body> 34 35 <p>Test passes if the <strong>left edge</strong> of an irregular polygon is straight and unbroken.</p> 36 37 <div id="srl">É<span id="fuchsia120">É</span><span id="fuchsia30">É</span></div> 38 39 </body> 40 </html>