| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> | 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> | 3 <head> |
| 4 <title>CSS Test: Bidirectional text runs can create additional line boxe
s</title> | 4 <title>CSS Test: Bidirectional text runs can create additional line boxe
s</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> | 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2012-04-02 --> | 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2012-04-02 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#inline-fo
rmatting" /> | 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#inline-fo
rmatting" /> |
| 8 <link rel="match" href="inline-formatting-context-023-ref.xht" /> | 8 <link rel="match" href="inline-formatting-context-023-ref.xht" /> |
| 9 | 9 |
| 10 <meta name="flags" content="" /> | 10 <meta name="flags" content="" /> |
| 11 <meta name="assert" content="Additional inline boxes can be created for
the bidirectional text." /> | 11 <meta name="assert" content="Additional inline boxes can be created for
the bidirectional text." /> |
| 12 <style type="text/css"> | 12 <style type="text/css"> |
| 13 #span1 | 13 #span1 |
| 14 { | 14 { |
| 15 margin: 1px; | 15 margin: 1px; |
| 16 padding: 1px; | 16 padding: 1px; |
| 17 line-height: 25px; | 17 line-height: 25px; |
| 18 } | 18 } |
| 19 #span2 | 19 #span2 |
| 20 { | 20 { |
| 21 direction: rtl; | 21 direction: rtl; |
| 22 unicode-bidi: bidi-override; | 22 unicode-bidi: bidi-override; |
| 23 line-height: 30px; | 23 line-height: 30px; |
| 24 } | 24 } |
| 25 </style> | 25 </style> |
| 26 </head> | 26 </head> |
| 27 <body> | 27 <body> |
| 28 <p>Test passes if there are 3 instances of "Filler Text".</p> | 28 <p>Test passes if there are 3 instances of "Filler Text".</p> |
| 29 <div> | 29 <div> |
| 30 <span id="span1">Filler Text <span id="span2">txeT relliF</span> Fil
ler Text</span> | 30 <span id="span1">Filler Text <span id="span2">txeT relliF</span> Fil
ler Text</span> |
| 31 </div> | 31 </div> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |