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

content / test / data / frame_tree / page_with_iframe_in_scrollable_div.html [blame]

<!DOCTYPE html>
<head>
  <style type="text/css">
    #wrapper-div {
      height: 200px;
      overflow-y: scroll;
    }
    iframe {
      height: 1000px;
    }
  </style>
</head>
<body>
  <div id="wrapper-div">
    <iframe src="/cross-site/b.com/title1.html"></iframe>
  </div>
</body>
</html>