| 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 left-floating boxes in a 'vertical-l
r' 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-vlr-007-ref.xht" /> |
| 12 |
| 13 <meta content="image" name="flags" /> |
| 14 <meta content="This test checks the flow of contiguous left-floating boxes. Th
e later (in source document) left-floating box must be to the right of the right
outer edge of earlier floating boxes otherwise (if there is not enough availabl
e 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-lr; |
| 20 } |
| 21 |
| 22 div |
| 23 { |
| 24 height: 299px; |
| 25 } |
| 26 |
| 27 img |
| 28 { |
| 29 float: left; |
| 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-tl.png" width="100" height="100" alt="Image downlo
ad support must be enabled" /><img src="support/test-bl.png" width="100" height=
"100" alt="Image download support must be enabled" /><img src="support/test-tr.p
ng" width="100" height="100" alt="Image download support must be enabled" /><img
src="support/test-br.png" width="100" height="100" alt="Image download support
must be enabled" /></div> |
| 39 |
| 40 </body> |
| 41 </html> |
| OLD | NEW |