437565-3.xhtml (742B)
1 <html xmlns="http://www.w3.org/1999/xhtml" 2 ><head> 3 <style> 4 /* Note: The height here is almost nscoord_MAX in app-units */ 5 /* Note: The width here needs to be wider than the viewport in order 6 to trigger a crash. */ 7 div.tall { 8 height: 17895687px; 9 width: 580px; 10 background: pink; 11 } 12 div.float { float: left; } 13 div.clear { clear: left; } 14 div.square { width: 10px; height: 10px; } 15 div.blue { background: blue; } 16 div.green { background: green; } 17 div.orange { background: orange; } 18 </style> 19 </head 20 ><div class="float"><div class="tall"/><div class="square blue"/></div 21 ><div class="float square green"></div 22 ><div><div class="float square orange"/><div class="clear"/></div 23 ></html>