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

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

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