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-left on embed 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 background: navy;
12 color: orange;
13 font: 1em/1 Ahem;
14 text-align: left;
15 width: 10em;
16 margin-bottom: 1em;
17 margin-left: 2em;
18 }
19
20 .rtol {
21 direction: rtl;
22 unicode-bidi: embed;
23 }
24 </style>
25 </head>
26
27 <body>
28 <p>Two identical patterns with identical left margin:</p>
29 <div>
30 Text
31 </div>
32 <div class="rtol">
33 Text
34 </div>
35 </body>
36 </html>