bidi-box-model-025

bidirection box model - margin-right on bidi-override block

WeasyPrint

This browser

Assertion
Side margins should be unaffected by directionality

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: bidirection box model - margin-right on bidi-override block</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/box.html#bidi-box-model">
 7     <meta name="flags" content="">
 8     <meta name="assert" content="Side margins should be unaffected by directionality">
 9     <style type="text/css">
10       div {
11       text-align: right;
12       margin-right: 5em;
13       margin-bottom: 1em;
14       background: navy;
15       font: 1em/1 Ahem;
16       color: orange;
17       }
18 
19       .rtol {
20       direction: rtl;
21       unicode-bidi: bidi-override;
22       }
23       
24     </style>
25   </head>
26   
27   <body>
28     <p>Two identical patterns with identical right margin:</p>
29     <div>
30       Text
31     </div>
32     <div class="rtol">
33       txeT
34     </div>
35   </body>
36 </html>