1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17

content / test / data / body_overflow_hidden.html [blame]

<html>
<head>
  <meta name='viewport' content='width=device-width, minimum-scale=1'>
</head>
<style>
body {
  height: 10000px;
  overflow: hidden;
}
</style>
<div style="width:100px; height:300px; overflow: scroll;">
  <div style="width:150px; height:250px; overflow: scroll">
    <div style="width:300px; height:200px; overflow: scroll">
    </div>
  </div>
</div>
</html>