Bug 1934520 - [devtools] Avoid errors in document-events webconsole listeners for...
[gecko.git] / layout / reftests / table-overflow / table-caption-scroll.html
blob70c5c0f566940380eb094010f3c29f430a41a9ec
1 <!DOCTYPE HTML>
2 <html><head>
3 <meta charset="utf-8">
4 <title>Testing table captions with overflow:auto/scroll/hidden</title>
5 <style type="text/css">
7 html,body {
8 color:black; background-color:white; font-size:16px; padding:0; margin:0; height:100%;
11 caption { border:1px solid; overflow:auto; height:100px; }
12 .s { overflow:scroll; }
13 .h { overflow:hidden; }
14 </style>
15 </head>
16 <body>
18 <table border="0" cellspacing="0" cellpadding="0">
19 <caption>0<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
20 <tr><td>TTTTTTTTTT</td></tr>
21 </table>
23 <table border="0" cellspacing="0" cellpadding="0">
24 <caption>00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
25 <tr><td>T</td></tr>
26 </table>
28 <table border="0" cellspacing="0" cellpadding="0">
29 <caption class="s">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
30 <tr><td>T</td></tr>
31 </table>
33 <table border="0" cellspacing="0" cellpadding="0">
34 <caption class="s">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
35 <tr><td>TTTTTTTTTT</td></tr>
36 </table>
38 <table border="0" cellspacing="0" cellpadding="0">
39 <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
40 <tr><td>T</td></tr>
41 </table>
43 <table border="0" cellspacing="0" cellpadding="0">
44 <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
45 <tr><td>TTTTTTTTTT</td></tr>
46 </table>
48 </body>
49 </html>