servo/tests/ref/border_collapse_missing_cell_ref.html
Patrick Walton 577f1ea109 layout: Don't panic in border collapse when a row has fewer cells than
its previous sibling.

This was seen in Twitter and the Google SERPs (sometimes).
2015-04-28 13:16:01 -07:00

24 lines
428 B
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Tests that missing cells don't cause a crash in border collapse code. -->
<style>
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<td>United States</td>
<td>40404</td>
<td>(any)</td>
</tr>
<tr>
<td>3424486444</td>
<td>Vodafone</td>
</tr>
</table>
</body>
</html>