servo/tests/wpt/css-tests/css-writing-modes-3_dev/html/text-baseline-srl-008.htm

39 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Writing Modes Test: text baseline alignment - alphabetical alignment with vertical layout</title>
<link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.com">
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2015-12-05 -->
<link rel="help" title="4.2. Text Baseline" href="http://www.w3.org/TR/css-writing-modes-3/#text-baselines">
<link rel="match" href="reference/text-baseline-vrl-006-ref.htm">
<meta name="assert" content="When 'writing-mode' is 'sideways-rl', then the alphabetic baseline is used as the dominant baseline.">
<meta name="flags" content="ahem">
<style type="text/css">
div#srl
{
color: fuchsia;
font: 60px/1.5 Ahem; /* computes to 60px/90px */
writing-mode: sideways-rl;
}
span#fuchsia120
{
font-size: 2em; /* computes to 120px */
}
span#fuchsia30
{
font-size: 0.5em; /* computes to 30px */
}
</style>
</head>
<body>
<p>Test passes if the <strong>left edge</strong> of an irregular polygon is straight and unbroken.</p>
<div id="srl">É<span id="fuchsia120">É</span><span id="fuchsia30">É</span></div>
</body>
</html>