blob: 04f3a4f916e1b15065b1215d311da07df08cb94a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<title>Reference for CSS Test: overflow:hidden on table with caption overflowing upwards</title>
<link rel="author" title="Simon Pieters" href="mailto:simonp@opera.com">
<style>
table { overflow:hidden; border-spacing:0 }
caption { margin-bottom:10px }
td { padding:0; background:black; width:20px; height:20px }
</style>
<p>Test passes if there is a black square below.</p>
<table>
<caption></caption>
<tr><td>
</table>
|