bidi-box-model-044

bidirection box model - padding-right on normal block

WeasyPrint

This browser

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