bidi-004

The bidi algorithm and inlines in CSS

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Flags
ahem, may21

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html lang="en">
 3  <head>
 4   <title>CSS Test: The bidi algorithm and inlines in CSS</title>
 5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 6   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline/bidi/004.html" type="text/html">
 7   <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#bidi-box-model">
 8   <link rel="help" href="http://www.w3.org/TR/css-text-3/#white-space-rules">
 9     <!-- Spaces are collapsed, then reordered, then trimmed. -->
10   <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#bidi-control-codes">
11 
12   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#bidi-box-model">
13   <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
14   <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-model">
15   <link rel="help" href="http://unicode.org/reports/tr9/">
16   <link rel="help" href="http://www.w3.org/TR/html5/rendering.html#phrasing-content-0"> <!-- <br> is a bidi paragraph separator -->
17   <link rel="match" href="reference/bidi-004-ref.htm">
18 
19   <meta name="flags" content="may21 ahem">
20   <style type="text/css">
21    div p { width: 28em; border: solid; margin: 1em; padding: 0.5em; background: #FFFFCC; color: black; font: 1em/1 Ahem; }
22    .test { border: solid; padding: 0.4em 1em; line-height: 3em; }
23    .control { line-height: 3em; }
24    .control.start { border-style: solid none solid solid; padding: 0.4em 0 0.4em 1em;  }
25    .control.middle { border-style: solid none solid none; padding: 0.4em 0 0.4em 0;  }
26    .control.end { border-style: solid solid solid none; padding: 0.4em 1em 0.4em 0;  }
27    .a { color: navy; }
28    .b { color: orange; }
29   </style>
30  </head>
31  <body>
32   <p> The following two blocks should be identical, including overflow. (Force bidi: א) </p>
33   <div>
34    <p>
35     <span class="control a start">pppp&nbsp;pppX&nbsp;ppXp&nbsp;ppXX&nbsp;pXpp</span><br><span class="control b start">pXpX</span>&nbsp;pXXp&nbsp;pXXX&nbsp;Xppp<span class="control a end">&nbsp;XppX</span><br><span class="control b end">XpXp&nbsp;XpXX&nbsp;XXpp&nbsp;XXpX&nbsp;XXXp</span>
36    </p>
37    <p>
38     <!-- (note that everything between the RLO to the PDF is backwards) -->
39                           <!-- line 1...................--> <!-- line 2........................................--> <!-- line 3...................-->
40     <span class="test a"> pppp pppX ppXp &#x202E; ppXp XXpp XppX </span> pppX XXXp pXXp <span class="test b"> XpXp ppXX XXpX pXpX &#x202C; XXpX XXXp </span>
41    </p>
42   </div>
43  </body>
44 </html>