1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/370525-rowspan-3.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<html> 1.5 +<head> 1.6 +<link rel="stylesheet" href="370525-style.css"/> 1.7 +</head> 1.8 + 1.9 +<body> 1.10 +rowspan=2 on the cell with the percent-height div, 1.11 +with specified height on table 1.12 +<table height="200px"> 1.13 + <tr> 1.14 + <td style="background: lightgreen" rowspan="2"> 1.15 + <div style="height: 75%"> 1.16 + height=75% / 150px 1.17 + </div> 1.18 + blah 1.19 + </td> 1.20 + <td style="background: lightblue"> first row, second column </td> 1.21 + </tr> 1.22 + <tr> 1.23 + <td style="background: orange"> 1.24 + 2nd row, only column 1.25 + </td> 1.26 + </tr> 1.27 +</table> 1.28 +</body> 1.29 +</html>