blob: cbc72a5a8888b5655798209d8b88a0d83a9c67c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<style>
table {
display: inline-table;
}
caption {
caption-side: bottom;
}
</style>
</head>
<body>
<table>
<caption>there!</caption>
<tr><td>Hello</td></tr>
</table>
</body>
</html>
|