mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
24 lines
428 B
HTML
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>
|