mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
25 lines
532 B
HTML
25 lines
532 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `empty-cells` works—in particular, that the definition of emptiness is correct. -->
|
|
<style>
|
|
table {
|
|
empty-cells: hide;
|
|
}
|
|
section {
|
|
float: right;
|
|
}
|
|
nav {
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table border=3>
|
|
<tr><td>Yo</td><td>Howdy</td><td><section> </section></td><td></td></tr>
|
|
<tr><td>Later</td><td><nav></nav></td><td>See ya</td><td>Aloha</td></tr>
|
|
<tr><td></td><td>Sayonara</td><td></td><td><span></span></td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|