text-align-bidi-001

Text-align and direction - left and rtl

WeasyPrint

This browser

Assertion
Text-align property should override the default text-align change caused by a switch of direction

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3   <head>
 4     <title>CSS Test: Text-align and direction - left and rtl</title>
 5     <link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com">
 6     <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#alignment-prop">
 7     <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-direction">
 8     <meta name="flags" content="">
 9     <meta name="assert" content="Text-align property should override the default text-align change caused by a switch of direction">
10     <style type="text/css">
11       div {
12       text-align: left;
13       direction: rtl;}
14     </style>
15   </head>
16   <body>
17     <div>
18       This text should be left-aligned
19     </div>
20   </body>
21 </html>