run-in-replaced-001.xht (1162B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Run in - basic replaced element</title> 5 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> 6 <link rel="reviewer" title="Microsoft" href="http://www.microsoft.com/" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#run-in"/> 8 <link rel="match" href="run-in-replaced-001-ref.xht"/> 9 <meta name="assert" 10 content="Tests that replaced elements can actually run in and that 11 they ten get sized correctly."/> 12 <style type="text/css"><![CDATA[ 13 div { display: block; } 14 .run-in { display: run-in; width: 20%; height: 50% } 15 #target { border: 2px solid black; width: 500px; height: 200px; } 16 #container { height: 0; width: 0; } 17 ]]></style> 18 </head> 19 <body> 20 <div id="container"> 21 <img class="run-in" src="support/swatch-blue.png" /> 22 <div id="target">Start of block. The blue square should be inside the 23 border of this block, a square, and half the block's height.</div> 24 </div> 25 </body> 26 </html>