multicol-fill-auto-003.xht (1843B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Multi-column Layout Test: 'column-fill: auto' (basic)</title> 5 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-01 --> 6 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#cf" title="7.1 'column-fill'" /> 7 <link rel="match" href="multicol-fill-auto-003-ref.xht" /> 8 <meta name="flags" content="ahem" /> 9 <meta name="assert" content="This test checks if inline content fills column boxes sequentially when 'column-fill' is set to 'auto'." /> 10 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 11 <style type="text/css"><![CDATA[ 12 div 13 { 14 background-image: url("support/red20x20.png"); 15 background-repeat: no-repeat; 16 background-position: 2em 4em; 17 border: green solid 1em; 18 color: green; 19 font: 1.25em/1 Ahem; 20 height: 6em; 21 width: 21em; 22 23 column-count: 2; 24 column-fill: auto; 25 column-gap: 1em; 26 column-rule: yellow solid 1em; 27 } 28 ]]></style> 29 </head> 30 31 <body> 32 33 <p>Test passes if there is <strong>no red</strong>.</p> 34 35 <div>1234567890 12 4567 90 123 56 890 123 56789 1 34567 90 12 4567 90 36 123 56 890 123 56</div> 37 38 <!-- 39 40 Expected result: 41 42 ************ ************ 43 |1234567890| |123 56 890| 44 |12 4567 90| |123 56 | 45 |123 56 890| | | 46 |123 56789 | | | 47 |1 34567 90| | | 48 |12 4567 90| | | 49 ************ ************ 50 51 The digits are the green squares, the white squares 52 are the blank white spaces. The yellow vertical stripe 53 represent both the column-gap and the column-rule. 54 The "3" glyph at line 5 of 1st column box should be 55 overlapping the red square. 56 57 --> 58 59 </body> 60 </html>