contain-layout-breaks-002-ref.html (789B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reference Test</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 div 11 { 12 float: left; 13 } 14 15 img 16 { 17 vertical-align: top; 18 } 19 </style> 20 21 <p>Test passes if there is a) a blue square below a yellow square and b) an orange square below a blue square. 22 23 <div> 24 <img src="../support/swatch-yellow.png" width="100" height="100" alt="Image download support must be enabled"> 25 <br> 26 <img src="../support/swatch-blue.png" width="100" height="100" alt="Image download support must be enabled"> 27 <br> 28 <img src="../support/swatch-orange.png" width="100" height="100" alt="Image download support must be enabled"> 29 </div>