s-11-1-1b-003.html (631B)
1 <!doctype html> 2 <title>CSS Test: overflow:auto on table overflowing upwards</title> 3 <link rel="author" title="Simon Pieters" href="mailto:simonp@opera.com"> 4 <link rel="help" href="http://www.w3.org/Style/css2-updates/REC-CSS2-20110607-errata.html#s.11.1.1b"> 5 <meta name="assert" content="Test checks that overflow:auto on table means visible."> 6 <link rel="match" href="s-11-1-1b-001-ref.html"> 7 <style> 8 table { overflow:auto; border-spacing:0 } 9 td { padding:0 } 10 div { width:20px; height:20px; margin-top:-15px; background:black } 11 </style> 12 <p>Test passes if there is a black square below.</p> 13 <table> 14 <tr><td><div></div> 15 </table>