When in landscape mode, my iPad2 puts the bottom border below the fold in this fiddle:
http://jsfiddle.net/L7zgLk5w/show/
I got confirmed, that this happens on iPhones in landscape mode too.
All other devices I tested show a the red borders on all sides of the screen without scrolling.
Is it a rendering bug in Mobile Safari?
Here is the code:
html,body,table
{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
td
{
border: 1px solid red;
}
<table>
<tr><td>top</td></tr>
<tr><td>middle</td></tr>
<tr><td>bottom</td></tr>
</table>