mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
19 lines
465 B
HTML
19 lines
465 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `empty-cells` works—in particular, that the definition of emptiness is correct. -->
|
|
<style>
|
|
.empty {
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table border=3>
|
|
<tr><td>Yo</td><td>Howdy</td><td></td><td class=empty></td></tr>
|
|
<tr><td>Later</td><td class=empty></td><td>See ya</td><td>Aloha</td></tr>
|
|
<tr><td class=empty></td><td>Sayonara</td><td class=empty></td><td></td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|