404215-3.html (712B)
1 <html> 2 <head><style> 3 /* Sets of heights that trigger crash: 4 100px/50px/51+px 5 100px/30px/74+px 6 Get only an assert unless you set ".d { position: absolute; }". 7 8 Trigger hang (separate issue, absolute not needed): 9 10px/10px/9999px 10 10px/10px/999999px --> "bad height" notreached 11 */ 12 #colset { width: 200px; 13 column-count: 3; } 14 #a { height: 10px; } 15 #b { height: 10px; } 16 #c { height: 999999px; } 17 18 </style> 19 </head> 20 <!-- Removing whitespace in body for simpler frame trees --> 21 <body 22 ><div id="colset" 23 ><div 24 ><div id="a"></div 25 ><div id="b" 26 ><div id="c"></div 27 ><div id="d"></div 28 ></div 29 ></div 30 ></div 31 ></body> 32 </html>