blob: a090e56921fcbecd26e3dda3aeee369ebb3fdcb8 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title>text-align: start, textarea, dir=rtl inherited</title>
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<link rel='help' href='https://drafts.csswg.org/css-text-3/#text-align-property'>
<meta name="assert" content="text-align:start aligns inline-level content to the start edge of the line box – ie. right when base direction is rtl.">
<style type='text/css'>
.test { text-align: start; }
/* the CSS below is not part of the test */
.test { border: 1px solid blue; margin: 20px; width: 300px; font-size: 24px; line-height: 1;}
</style>
</head>
<body>
<div id='instructions'>Test passes if both words are right-aligned in the box.</div>
<div dir="rtl">
<textarea class="test">latin
و·کمی</textarea>
</div>
</body>
</html>