direction-unicode-bidi-028

inner block converted to inline

WeasyPrint

This browser

Assertion
When direction:rtl and unicode-bidi:bidi-override is set on a block element containing block and inline elements, and CSS is used to change the block element to an inline element, the direction of all the text will be overridden.

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:inner block converted to inline</title>
 5 <link rel="author" title="Richard Ishida" href="http://rishida.net">
 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
 7 <link rel="alternate" href="http://www.w3.org/International/tests/tests-html-css/tests-direction-unicode-bidi/generate?test=28">
 8 <meta name="flags" content="">
 9 <meta name="assert" content="When direction:rtl and unicode-bidi:bidi-override is set on a block element containing block and inline elements, and CSS is used to change the block element to an inline element, the direction of all the text will be overridden.">
10 <style type="text/css">
11 .test { direction: rtl; unicode-bidi: bidi-override; }
12 .test div { display: inline; unicode-bidi: normal; } /* default HTML stylesheet sets unicode-bidi */
13 
14 /* the CSS below is not part of the test */
15 .test { font-size: 28px; font-family: serif; }
16 img { margin-left: 14px; margin-right: 10px;  }
17 </style>
18 </head>
19 <body>
20 <div dir="ltr">
21 <p class="instructions"><span class="instructionsymbol"><img src="support/same.png" alt="same"></span> Test passes if characters are in the same order.</p></div>
22 
23 
24 
25 <div class="test"><div>W3C نشاط التدويل i18n activity!</div>W3C نشاط التدويل i18n activity!</div>
26 
27 
28 <p style="text-align:right"><img src="support/direction-unicode-bidi-028.png" alt="reference graphic"></p><div dir="ltr">
29 </div>
30 </body>
31 </html>