| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 |
| 5 <head> |
| 6 |
| 7 <title>CSS Writing Modes Test: contiguous right-floating boxes in a 'vertical-
rl' block formating context</title> |
| 8 |
| 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> |
| 10 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layo
ut" title="7.1 Principles of Layout in Vertical Writing Modes" /> |
| 11 <link rel="match" href="float-contiguous-vrl-008-ref.xht" /> |
| 12 |
| 13 <meta content="image" name="flags" /> |
| 14 <meta content="This test checks the flow of contiguous right-floating boxes. T
he later (in source document) right-floating box must be to the left of the left
outer edge of earlier floating boxes, otherwise (if there is not enough availab
le horizontal space) below the margin box of the earlier box." name="assert" /> |
| 15 |
| 16 <style type="text/css"><![CDATA[ |
| 17 html |
| 18 { |
| 19 -webkit-writing-mode: vertical-rl; |
| 20 } |
| 21 |
| 22 div |
| 23 { |
| 24 height: 200px; |
| 25 } |
| 26 |
| 27 div > img |
| 28 { |
| 29 float: right; |
| 30 } |
| 31 ]]></style> |
| 32 </head> |
| 33 |
| 34 <body> |
| 35 |
| 36 <p><img src="support/pass-cdts-float-contiguous.png" width="297" height="35" a
lt="Image download support must be enabled" /></p> |
| 37 |
| 38 <div><img src="support/test-br.png" width="100" height="100" alt="Image downlo
ad support must be enabled" /><img src="support/test-tr.png" width="100" height=
"100" alt="Image download support must be enabled" /><img src="support/test-bl.p
ng" width="100" height="100" alt="Image download support must be enabled" /><img
src="support/test-tl.png" width="100" height="100" alt="Image download support
must be enabled" /></div> |
| 39 |
| 40 </body> |
| 41 </html> |
| OLD | NEW |