In Mobile Safari on my iPad I get some weird behaviour after changing the device orientation. Here is my test file:
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="initial-scale=0.7" />
<style>
#block {
border: 1px solid red;
background-color: yellow;
font-size: 400%;
width: 700px;
height: 500px;
}
</style>
</head>
<body>
<div id="block">Hello world!</div>
</body>
</html>
You can view it in Mobile Safari at this URL:
http://fiddle.jshell.net/eterps/jsTqj/show/
When I go the URL with my iPad in portrait orientation and make some swipe gestures the page does not scroll, which is correct.
However when I rotate the device to landscape mode and make some swipe gestures I gained extra space on the right for no apparent reason.
But even weirder is the fact that when I restart mobile safari and go to the URL while being in landscape orientation all the time, the extra space on the right is not present.
Why does the extra space to the right appear after a change in orientation? And how can I prevent it?