1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/325984-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<html> 1.5 + <head> 1.6 + <title>colgroup pseudos</title> 1.7 + <style> 1.8 + div.table {background-color:red; color:yellow; display:table} 1.9 + div.col {background-color:green; width:400px; display:table-column} 1.10 + 1.11 + </style> 1.12 + </head> 1.13 + <body> 1.14 + <div class="table"> 1.15 + <div class="col" ></div> anonymous content 1.16 + </div> 1.17 +<div class="table"> 1.18 + <div class="col" ></div> <div style="display:table-cell">anonymous cell</div> 1.19 + </div> 1.20 +<div class="table"> 1.21 + <div class="col" ></div> <div style="display:table-row">anonymous row</div> 1.22 + </div> 1.23 +<div class="table"> 1.24 + <div class="col" ></div> <div style="display:table-row-group">anonymous rowgroup</div> 1.25 + </div> 1.26 +<div class="table"> 1.27 + <div class="col" ></div> <div style="display:table">anonymous table</div> 1.28 + </div> 1.29 +<div class="table"> 1.30 + <div class="col" ></div> <div style="display:table-caption">anonymous caption</div> 1.31 + </div> 1.32 + 1.33 + </body> 1.34 +</html>